VTK  9.5.20251126
vtkHyperTreeGrid.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
58
59#ifndef vtkHyperTreeGrid_h
60#define vtkHyperTreeGrid_h
61
62#include "vtkCommonDataModelModule.h" // For export macro
63#include "vtkDataObject.h"
64
65#include "vtkDeprecation.h" // for deprecation macro
66#include "vtkNew.h" // vtkSmartPointer
67#include "vtkSmartPointer.h" // vtkSmartPointer
68
69#include <cassert> // std::assert
70#include <limits> // limits
71#include <map> // std::map
72
73VTK_ABI_NAMESPACE_BEGIN
74class vtkBitArray;
75class vtkBoundingBox;
76class vtkCellLinks;
77class vtkCollection;
78class vtkDataArray;
79class vtkHyperTree;
90class vtkDoubleArray;
92class vtkIdTypeArray;
93class vtkLine;
94class vtkPixel;
95class vtkPoints;
96class vtkCellData;
98
99class VTKCOMMONDATAMODEL_EXPORT vtkHyperTreeGrid : public vtkDataObject
100{
101public:
103
107 VTK_DEPRECATED_IN_9_6_0("Unused key.")
109 VTK_DEPRECATED_IN_9_6_0("Unused key.")
111 VTK_DEPRECATED_IN_9_6_0("Unused key.")
113 VTK_DEPRECATED_IN_9_6_0("Unused key.")
116
118
120 void PrintSelf(ostream& os, vtkIndent indent) override;
121
126 static constexpr vtkIdType InvalidIndex = ~0;
127
128 VTK_DEPRECATED_IN_9_6_0("No effect anymore, do not use.")
129 void SetModeSqueeze(const char* vtkNotUsed(vtksqueeze)){};
130 VTK_DEPRECATED_IN_9_6_0("No effect anymore, do not use.")
131 char* GetModeSqueeze() { return nullptr; }
132
133 VTK_DEPRECATED_IN_9_6_0("No effect anymore, do not use.")
134 virtual void Squeeze(){};
135
139 int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_HYPER_TREE_GRID; }
140
146
151
152 // --------------------------------------------------------------------------
153 // RectilinearGrid common API
154 // --------------------------------------------------------------------------
155
157
160 void SetDimensions(const unsigned int dims[3]);
161 void SetDimensions(const int dims[3]);
162 void SetDimensions(unsigned int i, unsigned int j, unsigned int k);
163 void SetDimensions(int i, int j, int k);
165
167
171 const unsigned int* GetDimensions() const VTK_SIZEHINT(3);
172 void GetDimensions(int dim[3]) const;
173 void GetDimensions(unsigned int dim[3]) const;
175
177
183 void SetExtent(const int extent[6]);
184 void SetExtent(int x1, int x2, int y1, int y2, int z1, int z2);
185 vtkGetVector6Macro(Extent, int);
187
189
194 const unsigned int* GetCellDims() const VTK_SIZEHINT(3);
195 void GetCellDims(int cellDims[3]) const;
196 void GetCellDims(unsigned int cellDims[3]) const;
198
199 // --------------------------------------------------------------------------
200
202
205 unsigned int GetDimension() const { return this->Dimension; }
207
209
212 void Get1DAxis(unsigned int& axis) const
213 {
214 assert("pre: valid_dim" && this->GetDimension() == 1);
215 axis = this->Axis[0];
216 }
217
218
220
223 void Get2DAxes(unsigned int& axis1, unsigned int& axis2) const
224 {
225 assert("pre: valid_dim" && this->GetDimension() == 2);
226 axis1 = this->Axis[0];
227 axis2 = this->Axis[1];
228 }
229
230
232
235 const unsigned int* GetAxes() const { return this->Axis; }
237
239
242 // vtkGetMacro(NumberOfChildren, unsigned int); not const
243 unsigned int GetNumberOfChildren() const { return this->NumberOfChildren; }
245
247
251 vtkSetMacro(TransposedRootIndexing, bool);
252 vtkGetMacro(TransposedRootIndexing, bool);
256
258
264 unsigned int GetOrientation() const { return this->Orientation; }
266
267 VTK_DEPRECATED_IN_9_6_0("No effect, do not use.")
268 bool GetFreezeState() { return false; };
269
271
274 void SetBranchFactor(unsigned int);
275 unsigned int GetBranchFactor() const { return this->BranchFactor; }
277
282
287
292
297
301 unsigned int GetNumberOfLevels();
302
304
310
312
318
320
326
328
331 virtual void CopyCoordinates(const vtkHyperTreeGrid* output);
332 virtual void SetFixedCoordinates(unsigned int axis, double value);
334
336
342
346 bool HasMask();
347
349
352 vtkSetMacro(HasInterface, bool);
353 vtkGetMacro(HasInterface, bool);
354 vtkBooleanMacro(HasInterface, bool);
356
358
361 vtkSetStringMacro(InterfaceNormalsName);
362 vtkGetStringMacro(InterfaceNormalsName);
364
366
369 vtkSetStringMacro(InterfaceInterceptsName);
370 vtkGetStringMacro(InterfaceInterceptsName);
372
374
377 vtkSetMacro(DepthLimiter, unsigned int);
378 vtkGetMacro(DepthLimiter, unsigned int);
380
382
392 vtkHyperTreeGridOrientedCursor* cursor, vtkIdType index, bool create = false);
395
397 vtkHyperTreeGridOrientedGeometryCursor* cursor, vtkIdType index, bool create = false);
400 vtkIdType index, bool create = false);
401
403 vtkHyperTreeGridNonOrientedCursor* cursor, vtkIdType index, bool create = false);
406
408 vtkHyperTreeGridNonOrientedGeometryCursor* cursor, vtkIdType index, bool create = false);
411 vtkIdType index, bool create = false);
412
415 bool create = false);
418 vtkIdType index, bool create = false);
420
425
430 virtual void GenerateGhostArray(int zeroExt[6]);
431
432private:
433 unsigned int RecurseDichotomic(
434 double value, vtkDoubleArray* coord, double tol, unsigned int ideb, unsigned int ifin) const;
435
436 unsigned int FindDichotomic(double value, vtkDataArray* coord, double tol) const;
437
438public:
439 virtual unsigned int FindDichotomicX(double value, double tol = 0.0) const;
440 virtual unsigned int FindDichotomicY(double value, double tol = 0.0) const;
441 virtual unsigned int FindDichotomicZ(double value, double tol = 0.0) const;
442
444
454 vtkHyperTreeGridNonOrientedVonNeumannSuperCursor* cursor, vtkIdType index, bool create = false);
457 vtkIdType index, bool create = false);
458
461 bool create = false);
464 vtkIdType index, bool create = false);
465
467 vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkIdType index, bool create = false);
470 vtkIdType index, bool create = false);
471
473 vtkHyperTreeGridNonOrientedMooreSuperCursorLight* cursor, vtkIdType index, bool create = false);
476 vtkIdType index, bool create = false);
477
480 bool create = false);
483 vtkIdType index, bool create = false);
485
489 void Initialize() override;
490
495 virtual vtkHyperTree* GetTree(vtkIdType index, bool create = false);
496
502
507 size_t RemoveTree(vtkIdType index);
508
512 void ShallowCopy(vtkDataObject*) override;
513
517 void DeepCopy(vtkDataObject*) override;
518
522 int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; }
523
532 virtual unsigned long GetActualMemorySizeBytes();
533
542 unsigned long GetActualMemorySize() override;
543
547 bool SupportsGhostArray(int type) override;
548
549private:
553 bool RecursivelyInitializePureMask(vtkHyperTreeGridNonOrientedCursor*, vtkDataArray*);
554
561 void CleanPureMask();
562
563public:
586
637 unsigned int GetChildMask(unsigned int);
638
642 void GetIndexFromLevelZeroCoordinates(vtkIdType&, unsigned int, unsigned int, unsigned int) const;
643
655
660 vtkIdType, unsigned int&, unsigned int&, unsigned int&) const;
661
665 virtual void GetLevelZeroOriginAndSizeFromIndex(vtkIdType, double*, double*);
666
671
677
682
686 bool HasAnyGhostCells() const;
687
693
700
705
709 class VTKCOMMONDATAMODEL_EXPORT vtkHyperTreeGridIterator
710 {
711 public:
713
718
724
730
731 protected:
732 std::map<vtkIdType, vtkSmartPointer<vtkHyperTree>>::iterator Iterator;
734 };
735
740
742
748
753 virtual void ComputeBounds();
754
756
764 virtual double* GetBounds() VTK_SIZEHINT(6);
765 void GetBounds(double bounds[6]);
767
773 virtual void GetGridBounds(double bounds[6]);
774
780
785 void GetCenter(double center[3]);
786
792
799
805 vtkIdType GetNumberOfElements(int type) override;
806
812
813protected:
818
819 ~vtkHyperTreeGrid() override;
820
821 double Bounds[6]; // (xmin,xmax, ymin,ymax, zmin,zmax) geometric bounds
822 double Center[3]{ 0.0, 0.0, 0.0 }; // geometric center
823
824 unsigned int BranchFactor = 0; // 2 or 3, 0 for invalid
825 unsigned int Dimension = 0; // 1, 2, or 3, 0 for invalid
826
827private:
828 // Invalid default grid parameters to force actual initialization
829 unsigned int Orientation = std::numeric_limits<unsigned int>::max(); // 0, 1, or 2
830 unsigned int Axis[2] = { std::numeric_limits<unsigned int>::max(),
831 std::numeric_limits<unsigned int>::max() };
832
833 vtkTimeStamp ComputeTime;
834
836
841 bool TreeGhostArrayCached = false;
843
844protected:
845 unsigned int NumberOfChildren = 0;
847
848 // --------------------------------
849 // RectilinearGrid common fields
850 // --------------------------------
851private:
852 unsigned int Dimensions[3] = { 0, 0, 0 }; // Just for GetDimensions
853 unsigned int CellDims[3] = { 0, 0, 0 }; // Just for GetCellDims
854protected:
856 int Extent[6] = { 0, -1, 0, -1, 0, -1 };
857
858 bool WithCoordinates = false;
862 // --------------------------------
863
866
867 bool HasInterface = false;
868 char* InterfaceNormalsName = nullptr;
869 char* InterfaceInterceptsName = nullptr;
870
871 std::map<vtkIdType, vtkSmartPointer<vtkHyperTree>> HyperTrees;
872
873 vtkNew<vtkCellData> CellData; // Scalars, vectors, etc. associated w/ each point
874
875 unsigned int DepthLimiter = std::numeric_limits<unsigned int>::max();
876
877private:
878 vtkHyperTreeGrid(const vtkHyperTreeGrid&) = delete;
879 void operator=(const vtkHyperTreeGrid&) = delete;
880};
881
882VTK_ABI_NAMESPACE_END
883#endif
dynamic, self-adjusting array of bits
Definition vtkBitArray.h:31
Fast, simple class for representing and operating on 3D bounds.
represent and manipulate cell attribute data
create and manipulate ordered lists of objects
represent and manipulate attribute data in a dataset
dynamic, self-adjusting array of double
Represents and manipulates a collection of data arrays.
Objects for traversal a HyperTreeGrid.
Objects for traversal a HyperTreeGrid.
An iterator object to iteratively access trees in the grid.
void Initialize(vtkHyperTreeGrid *grid)
Initialize the iterator on the tree set of the given grid.
std::map< vtkIdType, vtkSmartPointer< vtkHyperTree > >::iterator Iterator
vtkHyperTree * GetNextTree()
Get the next tree and set its index then increment the iterator.
vtkHyperTree * GetNextTree(vtkIdType &index)
Get the next tree and set its index then increment the iterator.
bool HasMask()
Determine whether blanking mask is empty or not.
vtkHyperTreeGridNonOrientedMooreSuperCursorLight * NewNonOrientedMooreSuperCursorLight(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
vtkFieldData * GetAttributesAsFieldData(int type) override
Returns the hypertree node field data stored as cell data.
vtkHyperTreeGridNonOrientedCursor * NewNonOrientedCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
vtkIdType GetNumberOfCells()
Return the number of cells.
const unsigned int * GetCellDims() const
Get grid sizes of this structured cells dataset.
vtkBitArray * PureMask
void InitializeNonOrientedUnlimitedGeometryCursor(vtkHyperTreeGridNonOrientedUnlimitedGeometryCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void SetMask(vtkBitArray *)
Set/Get the blanking mask of primal leaf cells.
virtual void CopyCoordinates(const vtkHyperTreeGrid *output)
Utility methods to set coordinates.
void InitializeNonOrientedVonNeumannSuperCursorLight(vtkHyperTreeGridNonOrientedVonNeumannSuperCursorLight *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
virtual void GetLevelZeroOriginFromIndex(vtkIdType, double *)
Convert the global index of a root to its Spatial coordinates origin and size.
vtkHyperTreeGridNonOrientedVonNeumannSuperCursorLight * NewNonOrientedVonNeumannSuperCursorLight(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
vtkHyperTreeGridOrientedCursor * NewOrientedCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
const unsigned int * GetDimensions() const
Get dimensions of this rectilinear grid dataset.
double * GetCenter()
Get the center of the bounding box.
virtual void Squeeze()
virtual vtkBitArray * GetMask()
Set/Get the blanking mask of primal leaf cells.
std::map< vtkIdType, vtkSmartPointer< vtkHyperTree > > HyperTrees
virtual void SetFixedCoordinates(unsigned int axis, double value)
Utility methods to set coordinates.
virtual void CopyEmptyStructure(vtkDataObject *)
Copy the internal structure with no data associated.
void DeepCopy(vtkDataObject *) override
Create deep copy of hyper tree grid.
void Get1DAxis(unsigned int &axis) const
Return the index of the valid dimension.
static vtkHyperTreeGrid * GetData(vtkInformation *info)
Retrieve an instance of this class from an information object.
void GetIndexFromLevelZeroCoordinates(vtkIdType &, unsigned int, unsigned int, unsigned int) const
Convert the Cartesian coordinates of a root in the grid to its global index.
void InitializeOrientedGeometryCursor(vtkHyperTreeGridOrientedGeometryCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
virtual void CopyStructure(vtkDataObject *)
Copy the internal geometric and topological structure of a vtkHyperTreeGrid object.
const unsigned int * GetAxes() const
Get the axis information (used for CopyStructure)
unsigned int GetNumberOfLevels(vtkIdType)
Return the number of levels in an individual (primal) tree.
vtkSmartPointer< vtkDataArray > YCoordinates
virtual void SetYCoordinates(vtkDataArray *)
Set/Get the grid coordinates in the y-direction.
vtkIdType GetMaxNumberOfTrees() const
Return the maximum number of trees in the level 0 grid.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetXCoordinates(vtkDataArray *)
Set/Get the grid coordinates in the x-direction.
virtual vtkDataArray * GetZCoordinates()
Set/Get the grid coordinates in the z-direction.
virtual unsigned int FindDichotomicY(double value, double tol=0.0) const
size_t RemoveTree(vtkIdType index)
Remove the tree at the given index.
vtkCellData * GetCellData()
Return a pointer to this dataset's hypertree node data.
vtkIdType GetNumberOfElements(int type) override
Returns the number of nodes.
virtual vtkHyperTree * GetTree(vtkIdType index, bool create=false)
Return tree located at given index of hyper tree grid NB: This will construct a new HyperTree if grid...
vtkHyperTreeGridNonOrientedGeometryCursor * FindNonOrientedGeometryCursor(double x[3])
Return a geometric cursor pointing to one of the nodes at position x
vtkUnsignedCharArray * GetTreeGhostArray()
Gets the array that defines the ghost type of each cell.
void Initialize() override
Restore data object to initial state.
unsigned int GetOrientation() const
Get the orientation of 1D or 2D grids:
static constexpr vtkIdType InvalidIndex
Invalid index that is returned for undefined nodes, for example for nodes that are out of bounds (the...
void SetIndexingModeToKJI()
Specify whether indexing mode of grid root cells must be transposed to x-axis first,...
void SetTree(vtkIdType, vtkHyperTree *)
Assign given tree to given index of hyper tree grid NB: This will create a new slot in the grid if ne...
virtual void GetLevelZeroOriginAndSizeFromIndex(vtkIdType, double *, double *)
Convert the global index of a root to its Spatial coordinates origin and size.
int GetExtentType() VTK_FUTURE_CONST override
Structured extent.
void SetModeSqueeze(const char *vtksqueeze)
void InitializeNonOrientedMooreSuperCursorLight(vtkHyperTreeGridNonOrientedMooreSuperCursorLight *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
virtual unsigned int FindDichotomicX(double value, double tol=0.0) const
unsigned int DepthLimiter
void SetDimensions(unsigned int i, unsigned int j, unsigned int k)
Set/Get sizes of this rectilinear grid dataset.
vtkUnsignedCharArray * AllocateTreeGhostArray()
Allocate ghost array for points.
vtkIdType GetNumberOfNonEmptyTrees()
Get the number of non empty trees in this grid.
virtual unsigned long GetActualMemorySizeBytes()
Return the actual size of the data in bytes.
vtkHyperTreeGridOrientedGeometryCursor * NewOrientedGeometryCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void Get2DAxes(unsigned int &axis1, unsigned int &axis2) const
Return the indices of the two valid dimensions.
static vtkHyperTreeGrid * GetData(vtkInformationVector *v, int i=0)
Retrieve an instance of this class from an information object.
vtkHyperTreeGridNonOrientedGeometryCursor * NewNonOrientedGeometryCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
vtkIdType GetGlobalNodeIndexMax()
Return the maximum global index value.
int GetDataObjectType() VTK_FUTURE_CONST override
Return what type of dataset this is.
void InitializeOrientedCursor(vtkHyperTreeGridOrientedCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void InitializeLocalIndexNode()
Initialize local indexes for every individual Hyper Tree after they have been refined.
vtkHyperTreeGridNonOrientedUnlimitedGeometryCursor * NewNonOrientedUnlimitedGeometryCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
virtual void ComputeBounds()
Compute the hyper tree grid bounding box ignoring masked cells.
unsigned long GetActualMemorySize() override
Return the actual size of the data in kibibytes (1024 bytes).
bool SupportsGhostArray(int type) override
Returns true if type is CELL, false otherwise.
vtkSmartPointer< vtkBitArray > Mask
void InitializeNonOrientedMooreSuperCursor(vtkHyperTreeGridNonOrientedMooreSuperCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
virtual vtkDataArray * GetYCoordinates()
Set/Get the grid coordinates in the y-direction.
vtkSmartPointer< vtkDataArray > XCoordinates
unsigned int Dimension
vtkHyperTreeGridNonOrientedUnlimitedMooreSuperCursor * NewNonOrientedUnlimitedMooreSuperCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
unsigned int GetNumberOfLevels()
Return the number of levels in the hyper tree grid.
void SetDimensions(const unsigned int dims[3])
Set/Get sizes of this rectilinear grid dataset.
void SetExtent(const int extent[6])
Different ways to set the extent of the data array.
virtual unsigned int FindDichotomicZ(double value, double tol=0.0) const
virtual void GenerateGhostArray(int zeroExt[6])
Generate the ghost array for this hypertree grid.
vtkIdType GetShiftedLevelZeroIndex(vtkIdType, int, int, int) const
Return the root index of a root cell with given index displaced.
void SetDimensions(int i, int j, int k)
Set/Get sizes of this rectilinear grid dataset.
unsigned int GetChildMask(unsigned int)
Return hard-coded bitcode correspondng to child mask Dimension 1: Factor 2: 0: 100,...
vtkUnsignedCharArray * GetGhostCells()
Gets the array that defines the ghost type of each cell.
virtual void SetZCoordinates(vtkDataArray *)
Set/Get the grid coordinates in the z-direction.
vtkHyperTreeGridNonOrientedVonNeumannSuperCursor * NewNonOrientedVonNeumannSuperCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void SetIndexingModeToIJK()
Specify whether indexing mode of grid root cells must be transposed to x-axis first,...
static vtkHyperTreeGrid * New()
vtkSmartPointer< vtkDataArray > ZCoordinates
vtkBitArray * GetPureMask()
Get or create pure material mask.
void InitializeTreeIterator(vtkHyperTreeGridIterator &it)
Initialize an iterator to browse level 0 trees.
bool HasAnyGhostCells() const
Returns true if a ghost cell array is defined.
void SetBranchFactor(unsigned int)
Set/Get the subdivision factor in the grid refinement scheme.
virtual vtkDataArray * GetXCoordinates()
Set/Get the grid coordinates in the x-direction.
void InitializeNonOrientedUnlimitedMooreSuperCursor(vtkHyperTreeGridNonOrientedUnlimitedMooreSuperCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
vtkIdType GetNumberOfLeaves()
Get the number of leaves in the primal tree grid.
void ShallowCopy(vtkDataObject *) override
Create shallow copy of hyper tree grid.
virtual double * GetBounds()
Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,...
vtkHyperTreeGrid()
Constructor with default bounds (0,1, 0,1, 0,1).
unsigned int GetBranchFactor() const
Set/Get the subdivision factor in the grid refinement scheme.
vtkNew< vtkCellData > CellData
vtkHyperTreeGridNonOrientedMooreSuperCursor * NewNonOrientedMooreSuperCursor(vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void InitializeNonOrientedGeometryCursor(vtkHyperTreeGridNonOrientedGeometryCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void InitializeNonOrientedCursor(vtkHyperTreeGridNonOrientedCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
unsigned int GetDimension() const
Get the dimensionality of the grid from the Dimensions/Extent.
unsigned int GetNumberOfChildren() const
The number of children each node can have.
void InitializeNonOrientedVonNeumannSuperCursor(vtkHyperTreeGridNonOrientedVonNeumannSuperCursor *cursor, vtkIdType index, bool create=false)
Used to initialize a cursor of the given type.
void GetLevelZeroCoordinatesFromIndex(vtkIdType, unsigned int &, unsigned int &, unsigned int &) const
Convert the global index of a root to its Cartesian coordinates in the grid.
virtual void GetGridBounds(double bounds[6])
Return a pointer to the grid bounding box in the form (xmin,xmax, ymin,ymax, zmin,...
virtual void SetTransposedRootIndexing(bool)
Specify whether indexing mode of grid root cells must be transposed to x-axis first,...
unsigned int NumberOfChildren
unsigned int BranchFactor
void SetDimensions(const int dims[3])
Set/Get sizes of this rectilinear grid dataset.
A data object structured as a tree.
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition vtkIndent.h:108
Key for integer values in vtkInformation.
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
cell represents a 1D line
Definition vtkLine.h:132
Allocate and hold a VTK object.
Definition vtkNew.h:167
a cell that represents an orthogonal quadrilateral
Definition vtkPixel.h:66
represent and manipulate 3D points
Definition vtkPoints.h:139
Hold a reference to a vtkObjectBase instance.
record modification and/or execution time
dynamic, self-adjusting array of unsigned char
static vtkInformationIntegerKey * ORIENTATION()
Deprecated information keys for vtkHyperTreeGrids.
static vtkInformationIntegerKey * DIMENSION()
Deprecated information keys for vtkHyperTreeGrids.
static vtkInformationIntegerKey * LEVELS()
Deprecated information keys for vtkHyperTreeGrids.
static vtkInformationDoubleVectorKey * SIZES()
Deprecated information keys for vtkHyperTreeGrids.
#define vtkDataArray
#define VTK_3D_EXTENT
#define VTK_DEPRECATED_IN_9_6_0(reason)
int vtkIdType
Definition vtkType.h:367
@ VTK_HYPER_TREE_GRID
Definition vtkType.h:145
#define VTK_SIZEHINT(...)
#define VTK_NEWINSTANCE