VTK  9.2.5
vtkHyperTreeGridToUnstructuredGrid.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkHyperTreeGridToUnstructuredGrid.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 =========================================================================*/
62 #ifndef vtkHyperTreeGridToUnstructuredGrid_h
63 #define vtkHyperTreeGridToUnstructuredGrid_h
64 
65 #include "vtkFiltersHyperTreeModule.h" // For export macro
67 
68 class vtkBitArray;
69 class vtkCellArray;
70 class vtkHyperTreeGrid;
71 class vtkIdTypeArray;
72 class vtkPoints;
75 
76 class VTKFILTERSHYPERTREE_EXPORT vtkHyperTreeGridToUnstructuredGrid
78 {
79 public:
82  void PrintSelf(ostream& os, vtkIndent indent) override;
83 
85 
88  vtkGetMacro(AddOriginalIds, bool);
89  vtkSetMacro(AddOriginalIds, bool);
90  vtkBooleanMacro(AddOriginalIds, bool);
92 
93 protected:
96 
101 
106 
111 
115  void AddCell(vtkIdType, double*, double*);
116 
121 
126 
130  unsigned int Dimension;
131  unsigned int Orientation;
132  const unsigned int* Axes;
133 
136 
137 private:
139  void operator=(const vtkHyperTreeGridToUnstructuredGrid&) = delete;
140 };
141 
142 #endif /* vtkHyperTreeGridToUnstructuredGrid_h */
dynamic, self-adjusting array of bits
Definition: vtkBitArray.h:37
object to represent cell connectivity
Definition: vtkCellArray.h:296
general representation of visualization data
Superclass for algorithms that produce a hyper tree grid as output.
Convert hyper tree grid to unstructured grid.
int FillOutputPortInformation(int, vtkInformation *) override
For this algorithm the output is a vtkUnstructuredGrid instance.
vtkCellArray * Cells
Storage for cells of output unstructured mesh.
vtkPoints * Points
Storage for points of output unstructured mesh.
void RecursivelyProcessTree(vtkHyperTreeGridNonOrientedGeometryCursor *)
Recursively descend into tree down to leaves.
int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *) override
Main routine to convert the grid of tree into an unstructured grid.
void AddCell(vtkIdType, double *, double *)
Helper method to generate a 2D or 3D cell.
unsigned int Dimension
Storage of underlying tree.
static vtkHyperTreeGridToUnstructuredGrid * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition: vtkIndent.h:119
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition: vtkPoints.h:149
dataset represents arbitrary combinations of all possible cell types
int vtkIdType
Definition: vtkType.h:332