VTK  9.2.6
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 
38 #ifndef vtkTessellatedBoxSource_h
39 #define vtkTessellatedBoxSource_h
40 
41 #include "vtkFiltersSourcesModule.h" // For export macro
42 #include "vtkPolyDataAlgorithm.h"
43 
44 class VTKFILTERSSOURCES_EXPORT vtkTessellatedBoxSource : public vtkPolyDataAlgorithm
45 {
46 public:
47  static vtkTessellatedBoxSource* New();
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
56  vtkSetVector6Macro(Bounds, double);
58 
60 
67  vtkGetVector6Macro(Bounds, double);
69 
71 
75  vtkSetMacro(Level, int);
77 
79 
83  vtkGetMacro(Level, int);
85 
87 
93  vtkSetMacro(DuplicateSharedPoints, vtkTypeBool);
94  vtkGetMacro(DuplicateSharedPoints, vtkTypeBool);
95  vtkBooleanMacro(DuplicateSharedPoints, vtkTypeBool);
97 
99 
103  vtkSetMacro(Quads, vtkTypeBool);
104  vtkGetMacro(Quads, vtkTypeBool);
105  vtkBooleanMacro(Quads, vtkTypeBool);
107 
109 
114  vtkSetMacro(OutputPointsPrecision, int);
115  vtkGetMacro(OutputPointsPrecision, int);
117 
118 protected:
120  ~vtkTessellatedBoxSource() override;
121 
126  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
127  vtkInformationVector* outputVector) override;
128 
129  void DuplicateSharedPointsMethod(double* bounds, vtkPoints* points, vtkCellArray* polys);
130 
131  void MinimalPointsMethod(double* bounds, vtkPoints* points, vtkCellArray* polys);
132 
140  vtkIdType LocalFacePointCoordinatesToPointId(int f, int i, int j);
141 
151  void BuildFace(vtkPoints* points, vtkCellArray* polys, vtkIdType firstPointId,
152  double facePoints[3][3], int changed);
153 
154  double Bounds[6];
155  int Level;
159 
160 private:
162  void operator=(const vtkTessellatedBoxSource&) = delete;
163 };
164 
165 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
int vtkIdType
Definition: vtkType.h:332
static vtkPolyDataAlgorithm * New()
int vtkTypeBool
Definition: vtkABI.h:69
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
object to represent cell connectivity
Definition: vtkCellArray.h:186
Create a polygonal representation of a box with a given level of subdivision.
Store zero or more vtkInformation instances.
represent and manipulate 3D points
Definition: vtkPoints.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.