VTK  9.1.0
vtkHyperTreeGridSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkHyperTreeGridSource.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
54#ifndef vtkHyperTreeGridSource_h
55#define vtkHyperTreeGridSource_h
56
57#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_0_0
58#include "vtkFiltersSourcesModule.h" // For export macro
60
61#include <map> // STL Header
62#include <string> // STL Header
63#include <vector> // STL Header
64
65class vtkBitArray;
66class vtkDataArray;
68class vtkIdTypeArray;
71class vtkQuadric;
72
73class VTKFILTERSSOURCES_EXPORT vtkHyperTreeGridSource : public vtkHyperTreeGridAlgorithm
74{
75public:
77 void PrintSelf(ostream& os, vtkIndent indent) override;
78
80
81 // @deprecated Replaced by GetMaxDepth() as of VTK 9
82 VTK_DEPRECATED_IN_9_0_0("Use vtkHyperTreeGridSource::GetMaxDepth")
83 unsigned int GetMaximumLevel();
84
85 // @deprecated Replaced by SetMaxDepth() as of VTK 9
87 void SetMaximumLevel(unsigned int levels);
88
93 unsigned int GetMaxDepth();
94
101 void SetMaxDepth(unsigned int levels);
102
104
107 vtkSetVector3Macro(Origin, double);
108 vtkGetVector3Macro(Origin, double);
110
112
115 vtkSetVector3Macro(GridScale, double);
116 vtkGetVector3Macro(GridScale, double);
117 void SetGridScale(double scale) { this->SetGridScale(scale, scale, scale); }
119
121
124 void SetDimensions(const unsigned int* dims);
125 void SetDimensions(unsigned int, unsigned int, unsigned int);
126 vtkGetVector3Macro(Dimensions, unsigned int);
128
130
134 vtkSetMacro(TransposedRootIndexing, bool);
135 vtkGetMacro(TransposedRootIndexing, bool);
139
141
144 vtkGetMacro(Orientation, unsigned int);
146
148
151 vtkSetClampMacro(BranchFactor, unsigned int, 2, 3);
152 vtkGetMacro(BranchFactor, unsigned int);
154
156
161 vtkSetMacro(UseDescriptor, bool);
162 vtkGetMacro(UseDescriptor, bool);
163 vtkBooleanMacro(UseDescriptor, bool);
165
167
172 vtkSetMacro(UseMask, bool);
173 vtkGetMacro(UseMask, bool);
174 vtkBooleanMacro(UseMask, bool);
176
178
183 vtkSetMacro(GenerateInterfaceFields, bool);
184 vtkGetMacro(GenerateInterfaceFields, bool);
185 vtkBooleanMacro(GenerateInterfaceFields, bool);
187
189
192 vtkSetStringMacro(Descriptor);
193 vtkGetStringMacro(Descriptor);
195
197
200 vtkSetStringMacro(Mask);
201 vtkGetStringMacro(Mask);
203
205
209 vtkGetObjectMacro(DescriptorBits, vtkBitArray);
211
216
218
221 virtual void SetMaskBits(vtkBitArray*);
222 vtkGetObjectMacro(MaskBits, vtkBitArray);
224
226
229 virtual void SetQuadric(vtkQuadric*);
230 vtkGetObjectMacro(Quadric, vtkQuadric);
232
234
237 void SetQuadricCoefficients(double[10]);
238 void GetQuadricCoefficients(double[10]);
241
246
248
254
255protected:
258
260
262
264
269
274
279
284 vtkHyperTreeGrid* output, vtkHyperTreeGridNonOrientedCursor* cursor, int treeIdx, int idx[3]);
285
290 vtkHyperTreeGridNonOrientedCursor* cursor, unsigned int level, int treeIdx, int childIdx,
291 int idx[3], int parentPos);
292
297 vtkHyperTreeGridNonOrientedCursor* cursor, unsigned int level, int treeIdx, int childIdx,
298 int idx[3], int parentPos);
299
304 unsigned int level, int treeIdx, const int idx[3], double origin[3], double size[3]);
305
309 double EvaluateQuadric(double[3]);
310
311 double Origin[3];
312 double GridScale[3];
313 unsigned int Dimension;
314
315protected:
316 unsigned int Dimensions[3];
318 unsigned int MaxDepth;
319
320 unsigned int Orientation;
321 unsigned int BranchFactor;
322 unsigned int BlockSize;
326
330
332 char* Mask;
333 std::vector<std::string> LevelDescriptors;
334 std::vector<std::string> LevelMasks;
335
338 std::vector<vtkIdType> LevelBitsIndex;
339 std::vector<vtkIdType> LevelBitsIndexCnt;
340
342 std::map<vtkIdType, vtkIdType> LevelZeroMaterialMap;
343
344 std::vector<int> LevelCounters;
345
347
349
350private:
352 void operator=(const vtkHyperTreeGridSource&) = delete;
353};
354
355#endif
dynamic, self-adjusting array of bits
Definition: vtkBitArray.h:34
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:59
general representation of visualization data
Definition: vtkDataObject.h:69
Superclass for algorithms that produce a hyper tree grid as output.
Objects for traversal a HyperTreeGrid.
Create a synthetic grid of hypertrees.
void SetDimensions(const unsigned int *dims)
Set/Get the number of root cells + 1 in each dimension of the grid.
void SetIndexingModeToIJK()
Specify whether indexing mode of grid root cells must be transposed to x-axis first,...
virtual void SetQuadric(vtkQuadric *)
Set/Get the quadric function.
virtual void SetMaskBits(vtkBitArray *)
Set/Get the bitarray used as a material mask.
std::vector< vtkIdType > LevelBitsIndex
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int InitializeFromStringDescriptor()
Initialize grid from descriptor string when it is to be used.
static vtkHyperTreeGridSource * New()
void SetGridScale(double scale)
Set/Get the scale to be applied to root cells in each dimension of the grid.
vtkMTimeType GetMTime() override
Override GetMTime because we delegate to a vtkQuadric.
virtual void SetLevelZeroMaterialIndex(vtkIdTypeArray *)
Set the index array used to as a material mask.
double EvaluateQuadric(double[3])
Evaluate quadric at given point coordinates.
int FillOutputPortInformation(int, vtkInformation *) override
Define default input and output port types.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
std::vector< vtkIdType > LevelBitsIndexCnt
void SetDimensions(unsigned int, unsigned int, unsigned int)
Set/Get the number of root cells + 1 in each dimension of the grid.
void SetIndexingModeToKJI()
Specify whether indexing mode of grid root cells must be transposed to x-axis first,...
vtkBitArray * ConvertDescriptorStringToBitArray(const std::string &)
Helpers to convert string descriptors & mask to bit arrays.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIdTypeArray * LevelZeroMaterialIndex
std::vector< std::string > LevelMasks
std::vector< int > LevelCounters
void SubdivideFromBitsDescriptor(vtkHyperTreeGrid *output, vtkHyperTreeGridNonOrientedCursor *cursor, unsigned int level, int treeIdx, int childIdx, int idx[3], int parentPos)
Subdivide grid from descriptor string when it is to be used.
vtkBitArray * ConvertMaskStringToBitArray(const std::string &)
Helpers to convert string descriptors & mask to bit arrays.
int InitializeFromBitsDescriptor()
Initialize grid from bit array descriptors when it is to be used.
~vtkHyperTreeGridSource() override
void SubdivideFromQuadric(vtkHyperTreeGrid *output, vtkHyperTreeGridNonOrientedCursor *cursor, unsigned int level, int treeIdx, const int idx[3], double origin[3], double size[3])
Subdivide grid from quadric when descriptor is not used.
void SubdivideFromStringDescriptor(vtkHyperTreeGrid *output, vtkHyperTreeGridNonOrientedCursor *cursor, unsigned int level, int treeIdx, int childIdx, int idx[3], int parentPos)
Subdivide grid from descriptor string when it is to be used.
double * GetQuadricCoefficients()
Helpers to set/get the 10 coefficients of the quadric function.
std::map< vtkIdType, vtkIdType > LevelZeroMaterialMap
void InitTreeFromDescriptor(vtkHyperTreeGrid *output, vtkHyperTreeGridNonOrientedCursor *cursor, int treeIdx, int idx[3])
Initialize tree grid from descriptor and call subdivide if needed.
void GetQuadricCoefficients(double[10])
Helpers to set/get the 10 coefficients of the quadric function.
std::vector< std::string > LevelDescriptors
int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *) override
Main routine to process individual trees in the grid.
void SetQuadricCoefficients(double[10])
Helpers to set/get the 10 coefficients of the quadric function.
virtual void SetDescriptorBits(vtkBitArray *)
Set/Get the bitarray used to describe the grid.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
dynamic, self-adjusting array of vtkIdType
abstract interface for implicit functions
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
evaluate implicit quadric function
Definition: vtkQuadric.h:40
@ level
Definition: vtkX3D.h:401
@ scale
Definition: vtkX3D.h:235
@ size
Definition: vtkX3D.h:259
@ string
Definition: vtkX3D.h:496
#define VTK_DEPRECATED_IN_9_0_0(reason)
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287