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 =========================================================================*/
34 #ifndef vtkHyperTreeGridGeometry_h
35 #define vtkHyperTreeGridGeometry_h
36 
37 #include "vtkFiltersHyperTreeModule.h" // For export macro
38 #include "vtkPolyDataAlgorithm.h"
39 
40 class vtkCellArray;
42 class vtkHyperTreeGrid;
43 class vtkPoints;
44 
45 class VTKFILTERSHYPERTREE_EXPORT vtkHyperTreeGridGeometry : public vtkPolyDataAlgorithm
46 {
47 public:
50  void PrintSelf( ostream&, vtkIndent );
51 
52 protected:
55 
56  virtual int RequestData( vtkInformation*,
59 
60  void ProcessTrees();
61  void RecursiveProcessTree( void* );
62  void ProcessLeaf1D( void* );
63  void ProcessLeaf2D( void* );
64  void ProcessLeaf3D( void* );
65  void AddFace( vtkIdType inId, double* origin, double* size,
66  int offset, int orientation );
67 
70 
73 
76 
77 private:
78  vtkHyperTreeGridGeometry(const vtkHyperTreeGridGeometry&) VTK_DELETE_FUNCTION;
79  void operator=(const vtkHyperTreeGridGeometry&) VTK_DELETE_FUNCTION;
80 };
81 
82 #endif
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:40
vtkHyperTreeGridGeometry::~vtkHyperTreeGridGeometry
~vtkHyperTreeGridGeometry()
vtkHyperTreeGridGeometry::OutData
vtkDataSetAttributes * OutData
Definition: vtkHyperTreeGridGeometry.h:72
vtkIdType
int vtkIdType
Definition: vtkType.h:287
vtkHyperTreeGridGeometry::vtkHyperTreeGridGeometry
vtkHyperTreeGridGeometry()
vtkHyperTreeGridGeometry::FillInputPortInformation
virtual int FillInputPortInformation(int, vtkInformation *)
Fill the input port information objects for this algorithm.
vtkDataSetAttributes
represent and manipulate attribute data in a dataset
Definition: vtkDataSetAttributes.h:59
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkHyperTreeGridGeometry::ProcessLeaf2D
void ProcessLeaf2D(void *)
vtkHyperTreeGridGeometry::Points
vtkPoints * Points
Definition: vtkHyperTreeGridGeometry.h:74
vtkHyperTreeGridGeometry::New
static vtkHyperTreeGridGeometry * New()
vtkHyperTreeGridGeometry::AddFace
void AddFace(vtkIdType inId, double *origin, double *size, int offset, int orientation)
vtkPolyDataAlgorithm.h
vtkHyperTreeGridGeometry::RecursiveProcessTree
void RecursiveProcessTree(void *)
vtkX3D::offset
@ offset
Definition: vtkX3D.h:438
vtkHyperTreeGridGeometry::ProcessLeaf3D
void ProcessLeaf3D(void *)
vtkHyperTreeGridGeometry::Output
vtkPolyData * Output
Definition: vtkHyperTreeGridGeometry.h:69
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkHyperTreeGridGeometry::PrintSelf
void PrintSelf(ostream &, vtkIndent)
Methods invoked by print to print information about the object including superclasses.
vtkCellArray
object to represent cell connectivity
Definition: vtkCellArray.h:51
vtkX3D::size
@ size
Definition: vtkX3D.h:253
vtkHyperTreeGridGeometry::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkHyperTreeGridGeometry
Hyper tree grid outer surface.
Definition: vtkHyperTreeGridGeometry.h:46
vtkHyperTreeGridGeometry::Input
vtkHyperTreeGrid * Input
Definition: vtkHyperTreeGridGeometry.h:68
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:86
vtkHyperTreeGridGeometry::InData
vtkDataSetAttributes * InData
Definition: vtkHyperTreeGridGeometry.h:71
vtkHyperTreeGridGeometry::Cells
vtkCellArray * Cells
Definition: vtkHyperTreeGridGeometry.h:75
vtkHyperTreeGrid
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
Definition: vtkHyperTreeGrid.h:69
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:45