VTK  9.2.5
vtkCellTypeSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCellTypeSource.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 =========================================================================*/
51 #ifndef vtkCellTypeSource_h
52 #define vtkCellTypeSource_h
53 
54 #include "vtkFiltersSourcesModule.h" // For export macro
56 
57 class vtkMergePoints;
58 
59 class VTKFILTERSSOURCES_EXPORT vtkCellTypeSource : public vtkUnstructuredGridAlgorithm
60 {
61 public:
63 
68  void PrintSelf(ostream& os, vtkIndent indent) override;
70 
72 
75  void SetCellType(int cellType);
76  vtkGetMacro(CellType, int);
78 
80 
89  vtkSetMacro(CellOrder, int);
90  vtkGetMacro(CellOrder, int);
92 
94 
113  vtkSetMacro(CompleteQuadraticSimplicialElements, bool);
114  vtkGetMacro(CompleteQuadraticSimplicialElements, bool);
115  vtkBooleanMacro(CompleteQuadraticSimplicialElements, bool);
117 
119 
123  vtkSetClampMacro(PolynomialFieldOrder, int, 0, VTK_INT_MAX);
124  vtkGetMacro(PolynomialFieldOrder, int);
126 
128 
133 
135 
140  vtkSetClampMacro(OutputPrecision, int, 0, 1);
141  vtkGetMacro(OutputPrecision, int);
143 
145 
152  void SetBlocksDimensions(int, int, int);
153  vtkGetVector3Macro(BlocksDimensions, int);
155 
156 protected:
158  ~vtkCellTypeSource() override = default;
159 
162 
178 
185 
192 
194  double GetValueOfOrder(int order, double coords[3]);
195 
196  int BlocksDimensions[3];
197  int CellType;
202  vtkMergePoints* Locator; // Only valid during RequestData.
203 
204 private:
205  vtkCellTypeSource(const vtkCellTypeSource&) = delete;
206  void operator=(const vtkCellTypeSource&) = delete;
207 };
208 
209 #endif
Create cells of a given type.
void GenerateQuadraticTriangles(vtkUnstructuredGrid *, int extent[6])
void GenerateWedges(vtkUnstructuredGrid *, int extent[6])
void SetBlocksDimensions(int *)
Set the number of cells in each direction.
void GeneratePentagonalPrism(vtkUnstructuredGrid *, int extent[6])
void GenerateLagrangeTris(vtkUnstructuredGrid *, int extent[6])
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetBlocksDimensions(int, int, int)
Set the number of cells in each direction.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
static vtkCellTypeSource * New()
Standard methods for instantiation, obtaining type and printing instance values.
void GenerateLagrangeWedges(vtkUnstructuredGrid *, int extent[6])
void GenerateBezierTets(vtkUnstructuredGrid *, int extent[6])
void GenerateBezierTris(vtkUnstructuredGrid *, int extent[6])
~vtkCellTypeSource() override=default
void GenerateQuadraticPyramids(vtkUnstructuredGrid *, int extent[6])
void GenerateBezierWedges(vtkUnstructuredGrid *, int extent[6])
virtual void ComputeFields(vtkUnstructuredGrid *)
void GenerateBezierHexes(vtkUnstructuredGrid *, int extent[6])
void GenerateLagrangeHexes(vtkUnstructuredGrid *, int extent[6])
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type and printing instance values.
void GenerateBezierCurves(vtkUnstructuredGrid *, int extent[6])
void GenerateLagrangeTets(vtkUnstructuredGrid *, int extent[6])
void GenerateQuadraticHexahedron(vtkUnstructuredGrid *, int extent[6])
void GenerateLagrangeCurves(vtkUnstructuredGrid *, int extent[6])
void GenerateQuads(vtkUnstructuredGrid *, int extent[6])
double GetValueOfOrder(int order, double coords[3])
vtkMergePoints * Locator
int GetCellDimension()
Get the dimension of the cell blocks to be generated.
void GenerateTriangles(vtkUnstructuredGrid *, int extent[6])
void GenerateHexagonalPrism(vtkUnstructuredGrid *, int extent[6])
void GenerateQuadraticWedges(vtkUnstructuredGrid *, int extent[6])
void GenerateQuadraticQuads(vtkUnstructuredGrid *, int extent[6])
void SetCellType(int cellType)
Set/Get the type of cells to be generated.
void GenerateTetras(vtkUnstructuredGrid *, int extent[6])
void GenerateQuadraticTetras(vtkUnstructuredGrid *, int extent[6])
void GeneratePyramids(vtkUnstructuredGrid *, int extent[6])
bool CompleteQuadraticSimplicialElements
void GenerateBezierQuads(vtkUnstructuredGrid *, int extent[6])
void GenerateLagrangeQuads(vtkUnstructuredGrid *, int extent[6])
void GenerateHexahedron(vtkUnstructuredGrid *, int extent[6])
void GenerateTriQuadraticPyramids(vtkUnstructuredGrid *, int extent[6])
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
merge exactly coincident points
Superclass for algorithms that produce only unstructured grid as output.
dataset represents arbitrary combinations of all possible cell types
@ order
Definition: vtkX3D.h:446
@ extent
Definition: vtkX3D.h:351
#define VTK_INT_MAX
Definition: vtkType.h:155