VTK
vtkHyperTreeGridGeometry.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkHyperTreeGridGeometry.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 =========================================================================*/
33 #ifndef vtkHyperTreeGridGeometry_h
34 #define vtkHyperTreeGridGeometry_h
35 
36 #include "vtkFiltersHyperTreeModule.h" // For export macro
37 #include "vtkPolyDataAlgorithm.h"
38 
39 class vtkCellArray;
41 class vtkHyperTreeGrid;
42 class vtkPoints;
43 
45 {
46 public:
49  void PrintSelf( ostream&, vtkIndent );
50 
51 protected:
54 
55  virtual int RequestData( vtkInformation*,
58 
59  void ProcessTrees();
60  void RecursiveProcessTree( void* );
61  void ProcessLeaf1D( void* );
62  void ProcessLeaf2D( void* );
63  void ProcessLeaf3D( void* );
64  void AddFace( vtkIdType inId, double* origin, double* size,
65  int offset, int orientation );
66 
69 
72 
75 
76 private:
77  vtkHyperTreeGridGeometry(const vtkHyperTreeGridGeometry&); // Not implemented.
78  void operator=(const vtkHyperTreeGridGeometry&); // Not implemented.
79 };
80 
81 #endif
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:39
vtkHyperTreeGridGeometry::~vtkHyperTreeGridGeometry
~vtkHyperTreeGridGeometry()
vtkHyperTreeGridGeometry::OutData
vtkDataSetAttributes * OutData
Definition: vtkHyperTreeGridGeometry.h:71
vtkIdType
int vtkIdType
Definition: vtkType.h:275
vtkHyperTreeGridGeometry::vtkHyperTreeGridGeometry
vtkHyperTreeGridGeometry()
vtkHyperTreeGridGeometry::FillInputPortInformation
virtual int FillInputPortInformation(int, vtkInformation *)
vtkDataSetAttributes
represent and manipulate attribute data in a dataset
Definition: vtkDataSetAttributes.h:58
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkHyperTreeGridGeometry::ProcessLeaf2D
void ProcessLeaf2D(void *)
vtkHyperTreeGridGeometry::Points
vtkPoints * Points
Definition: vtkHyperTreeGridGeometry.h:73
vtkHyperTreeGridGeometry::New
static vtkHyperTreeGridGeometry * New()
vtkHyperTreeGridGeometry::AddFace
void AddFace(vtkIdType inId, double *origin, double *size, int offset, int orientation)
vtkFiltersHyperTreeModule.h
vtkPolyDataAlgorithm.h
vtkHyperTreeGridGeometry::RecursiveProcessTree
void RecursiveProcessTree(void *)
VTKFILTERSHYPERTREE_EXPORT
#define VTKFILTERSHYPERTREE_EXPORT
Definition: vtkFiltersHyperTreeModule.h:15
vtkHyperTreeGridGeometry::ProcessLeaf3D
void ProcessLeaf3D(void *)
vtkHyperTreeGridGeometry::Output
vtkPolyData * Output
Definition: vtkHyperTreeGridGeometry.h:68
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkHyperTreeGridGeometry::PrintSelf
void PrintSelf(ostream &, vtkIndent)
vtkCellArray
object to represent cell connectivity
Definition: vtkCellArray.h:50
vtkgl::offset
GLintptr offset
Definition: vtkgl.h:11844
vtkHyperTreeGridGeometry::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkHyperTreeGridGeometry
Hyper tree grid outer surface.
Definition: vtkHyperTreeGridGeometry.h:45
vtkHyperTreeGridGeometry::Input
vtkHyperTreeGrid * Input
Definition: vtkHyperTreeGridGeometry.h:67
vtkX3D::orientation
@ orientation
Definition: vtkX3D.h:262
vtkHyperTreeGridGeometry::ProcessTrees
void ProcessTrees()
vtkHyperTreeGridGeometry::ProcessLeaf1D
void ProcessLeaf1D(void *)
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:84
vtkHyperTreeGridGeometry::InData
vtkDataSetAttributes * InData
Definition: vtkHyperTreeGridGeometry.h:70
vtkHyperTreeGridGeometry::Cells
vtkCellArray * Cells
Definition: vtkHyperTreeGridGeometry.h:74
vtkHyperTreeGrid
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
Definition: vtkHyperTreeGrid.h:68
vtkgl::size
GLsizeiptr size
Definition: vtkgl.h:11843
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:44