VTK  9.1.0
vtkArrayExtentsList.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkArrayExtentsList.h
5
6-------------------------------------------------------------------------
7 Copyright 2008 Sandia Corporation.
8 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 the U.S. Government retains certain rights in this software.
10-------------------------------------------------------------------------
11
12 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
13 All rights reserved.
14 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
15
16 This software is distributed WITHOUT ANY WARRANTY; without even
17 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18 PURPOSE. See the above copyright notice for more information.
19
20=========================================================================*/
21
44#ifndef vtkArrayExtentsList_h
45#define vtkArrayExtentsList_h
46
47#include "vtkArrayExtents.h"
48#include "vtkCommonCoreModule.h" // For export macro
49#include <vector> // STL Header
50
51class VTKCOMMONCORE_EXPORT vtkArrayExtentsList
52{
53public:
58
63
68
73
78 const vtkArrayExtents& l);
79
84
90 void SetCount(vtkIdType count);
91
96
101
102private:
103 std::vector<vtkArrayExtents> Storage;
104};
105
106#endif
107
108// VTK-HeaderTest-Exclude: vtkArrayExtentsList.h
Stores a collection of vtkArrayExtents objects.
vtkArrayExtentsList(const vtkArrayExtents &i)
Creates a collection containing one slice.
vtkArrayExtentsList(const vtkArrayExtents &i, const vtkArrayExtents &j, const vtkArrayExtents &k, const vtkArrayExtents &l)
Creates a collection containing four slices.
vtkIdType GetCount() const
Returns the number of slices stored in this collection.
vtkArrayExtentsList(const vtkArrayExtents &i, const vtkArrayExtents &j, const vtkArrayExtents &k)
Creates a collection containing three slices.
void SetCount(vtkIdType count)
Sets the number of extents stored in this collection.
const vtkArrayExtents & operator[](vtkIdType i) const
Accesses the i-th slice.
vtkArrayExtents & operator[](vtkIdType i)
Accesses the i-th slice.
vtkArrayExtentsList(const vtkArrayExtents &i, const vtkArrayExtents &j)
Creates a collection containing two slices.
vtkArrayExtentsList()
Creates an empty collection of slices.
Stores the number of dimensions and valid coordinate ranges along each dimension for vtkArray.
int vtkIdType
Definition: vtkType.h:332