VTK  9.1.0
vtkTessellatedBoxSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTessellatedBoxSource.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=========================================================================*/
15
44#ifndef vtkTessellatedBoxSource_h
45#define vtkTessellatedBoxSource_h
46
47#include "vtkFiltersSourcesModule.h" // For export macro
49
50class VTKFILTERSSOURCES_EXPORT vtkTessellatedBoxSource : public vtkPolyDataAlgorithm
51{
52public:
55 void PrintSelf(ostream& os, vtkIndent indent) override;
56
58
62 vtkSetVector6Macro(Bounds, double);
64
66
73 vtkGetVector6Macro(Bounds, double);
75
77
81 vtkSetMacro(Level, int);
83
85
89 vtkGetMacro(Level, int);
91
93
99 vtkSetMacro(DuplicateSharedPoints, vtkTypeBool);
100 vtkGetMacro(DuplicateSharedPoints, vtkTypeBool);
101 vtkBooleanMacro(DuplicateSharedPoints, vtkTypeBool);
103
105
109 vtkSetMacro(Quads, vtkTypeBool);
110 vtkGetMacro(Quads, vtkTypeBool);
111 vtkBooleanMacro(Quads, vtkTypeBool);
113
115
120 vtkSetMacro(OutputPointsPrecision, int);
121 vtkGetMacro(OutputPointsPrecision, int);
123
124protected:
127
133 vtkInformationVector* outputVector) override;
134
136
137 void MinimalPointsMethod(double* bounds, vtkPoints* points, vtkCellArray* polys);
138
147
157 void BuildFace(vtkPoints* points, vtkCellArray* polys, vtkIdType firstPointId,
158 double facePoints[3][3], int changed);
159
160 double Bounds[6];
161 int Level;
165
166private:
168 void operator=(const vtkTessellatedBoxSource&) = delete;
169};
170
171#endif
object to represent cell connectivity
Definition: vtkCellArray.h:190
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition: vtkPoints.h:43
Superclass for algorithms that produce only polydata as output.
Create a polygonal representation of a box with a given level of subdivision.
vtkIdType LocalFacePointCoordinatesToPointId(int f, int i, int j)
Compute the pointId of point (i,j) of face f.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Called by the superclass.
void MinimalPointsMethod(double *bounds, vtkPoints *points, vtkCellArray *polys)
~vtkTessellatedBoxSource() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTessellatedBoxSource * New()
void BuildFace(vtkPoints *points, vtkCellArray *polys, vtkIdType firstPointId, double facePoints[3][3], int changed)
Build one of the face of the box with some level of tessellation.
void DuplicateSharedPointsMethod(double *bounds, vtkPoints *points, vtkCellArray *polys)
@ points
Definition: vtkX3D.h:452
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332