VTK  9.4.20241108
vtkGenericCell.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
90#ifndef vtkGenericCell_h
91#define vtkGenericCell_h
92
93#include "vtkCell.h"
94#include "vtkCommonDataModelModule.h" // For export macro
95
96VTK_ABI_NAMESPACE_BEGIN
97class VTKCOMMONDATAMODEL_EXPORT vtkGenericCell : public vtkCell
98{
99public:
104
105 vtkTypeMacro(vtkGenericCell, vtkCell);
106 void PrintSelf(ostream& os, vtkIndent indent) override;
107
112 void SetPoints(vtkPoints* points);
113
118 void SetPointIds(vtkIdList* pointIds);
119
121
124 void ShallowCopy(vtkCell* c) override;
125 void DeepCopy(vtkCell* c) override;
126 int GetCellType() override;
127 int GetCellDimension() override;
128 int IsLinear() override;
130 void Initialize() override;
132 VTK_DEPRECATED_IN_9_4_0("Use SetCellFaces.")
133 void SetFaces(vtkIdType* faces) override;
134 VTK_DEPRECATED_IN_9_4_0("Use GetCellFaces.")
135 vtkIdType* GetFaces() override;
136 int SetCellFaces(vtkCellArray* faces);
137 vtkCellArray* GetCellFaces();
138 void GetCellFaces(vtkCellArray* faces);
139 int GetNumberOfEdges() override;
140 int GetNumberOfFaces() override;
141 vtkCell* GetEdge(int edgeId) override;
142 vtkCell* GetFace(int faceId) override;
143 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
144 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
145 double& dist2, double weights[]) override;
146 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
147 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
148 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
149 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
150 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
151 vtkCellArray* connectivity, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
152 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
153 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
154 double pcoords[3], int& subId) override;
155 int Triangulate(int index, vtkIdList* ptIds, vtkPoints* pts) override;
156 int TriangulateLocalIds(int index, vtkIdList* ptIds) override;
157 int TriangulateIds(int index, vtkIdList* ptIds) override;
158 void Derivatives(
159 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
160 int GetParametricCenter(double pcoords[3]) override;
161 double* GetParametricCoords() override;
162 int IsPrimaryCell() override;
164
166
170 void InterpolateFunctions(const double pcoords[3], double* weights) override;
171 void InterpolateDerivs(const double pcoords[3], double* derivs) override;
173
181 void SetCellType(int cellType);
182 void SetCellTypeToEmptyCell() { this->SetCellType(VTK_EMPTY_CELL); }
183 void SetCellTypeToVertex() { this->SetCellType(VTK_VERTEX); }
184 void SetCellTypeToPolyVertex() { this->SetCellType(VTK_POLY_VERTEX); }
185 void SetCellTypeToLine() { this->SetCellType(VTK_LINE); }
186 void SetCellTypeToPolyLine() { this->SetCellType(VTK_POLY_LINE); }
187 void SetCellTypeToTriangle() { this->SetCellType(VTK_TRIANGLE); }
188 void SetCellTypeToTriangleStrip() { this->SetCellType(VTK_TRIANGLE_STRIP); }
189 void SetCellTypeToPolygon() { this->SetCellType(VTK_POLYGON); }
190 void SetCellTypeToPixel() { this->SetCellType(VTK_PIXEL); }
191 void SetCellTypeToQuad() { this->SetCellType(VTK_QUAD); }
192 void SetCellTypeToTetra() { this->SetCellType(VTK_TETRA); }
193 void SetCellTypeToVoxel() { this->SetCellType(VTK_VOXEL); }
194 void SetCellTypeToHexahedron() { this->SetCellType(VTK_HEXAHEDRON); }
195 void SetCellTypeToWedge() { this->SetCellType(VTK_WEDGE); }
196 void SetCellTypeToPyramid() { this->SetCellType(VTK_PYRAMID); }
199 void SetCellTypeToPolyhedron() { this->SetCellType(VTK_POLYHEDRON); }
201 void SetCellTypeToQuadraticEdge() { this->SetCellType(VTK_QUADRATIC_EDGE); }
202 void SetCellTypeToCubicLine() { this->SetCellType(VTK_CUBIC_LINE); }
205 void SetCellTypeToQuadraticQuad() { this->SetCellType(VTK_QUADRATIC_QUAD); }
215 {
216 this->SetCellType(VTK_BIQUADRATIC_QUADRATIC_WEDGE);
217 }
221 {
222 this->SetCellType(VTK_BIQUADRATIC_QUADRATIC_HEXAHEDRON);
223 }
226 void SetCellTypeToLagrangeCurve() { this->SetCellType(VTK_LAGRANGE_CURVE); }
229 void SetCellTypeToLagrangeWedge() { this->SetCellType(VTK_LAGRANGE_WEDGE); }
230
233 void SetCellTypeToBezierCurve() { this->SetCellType(VTK_BEZIER_CURVE); }
236 void SetCellTypeToBezierWedge() { this->SetCellType(VTK_BEZIER_WEDGE); }
240 static vtkCell* InstantiateCell(int cellType);
241
242 vtkCell* GetRepresentativeCell() { return this->Cell; }
243
244protected:
246 ~vtkGenericCell() override;
247
250
251private:
252 vtkGenericCell(const vtkGenericCell&) = delete;
253 void operator=(const vtkGenericCell&) = delete;
254};
255
256VTK_ABI_NAMESPACE_END
257#endif
object to represent cell connectivity
represent and manipulate cell attribute data
abstract class to specify cell behavior
Definition vtkCell.h:130
abstract superclass for arrays of numeric data
provides thread-safe access to cells
void SetCellTypeToLagrangeCurve()
void SetCellTypeToHexahedron()
void SetCellTypeToQuadraticLinearWedge()
static vtkCell * InstantiateCell(int cellType)
Instantiate a new vtkCell based on it's cell type value.
void SetCellTypeToLagrangeWedge()
void Initialize() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToQuadraticWedge()
void SetCellTypeToQuadraticPolygon()
void SetCellTypeToPyramid()
void SetCellTypeToQuadraticTetra()
void SetCellTypeToTriangleStrip()
void SetCellTypeToPixel()
int RequiresInitialization() override
See the vtkCell API for descriptions of these methods.
vtkCell * GetRepresentativeCell()
void SetCellTypeToQuadraticQuad()
void SetCellTypeToQuadraticLinearQuad()
void SetCellTypeToBezierWedge()
void SetCellTypeToTetra()
~vtkGenericCell() override
static vtkGenericCell * New()
Create handle to any type of cell; by default a vtkEmptyCell.
void SetCellTypeToLagrangeTetra()
void SetCellTypeToPolyhedron()
void SetCellTypeToBezierTetra()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int IsLinear() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToQuadraticHexahedron()
void SetCellTypeToVoxel()
void SetPoints(vtkPoints *points)
Set the points object to use for this cell.
void SetCellTypeToTriQuadraticHexahedron()
void SetCellTypeToBiQuadraticQuadraticHexahedron()
void SetCellTypeToBiQuadraticQuad()
void SetCellTypeToCubicLine()
int RequiresExplicitFaceRepresentation() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToConvexPointSet()
int GetCellDimension() override
See the vtkCell API for descriptions of these methods.
void DeepCopy(vtkCell *c) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToVertex()
void SetCellTypeToBezierCurve()
void SetCellTypeToLagrangeTriangle()
void SetCellTypeToWedge()
void SetCellTypeToTriangle()
void SetCellTypeToQuadraticPyramid()
void SetCellTypeToQuadraticEdge()
int GetCellType() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToBiQuadraticQuadraticWedge()
void SetCellTypeToBiQuadraticTriangle()
void SetCellTypeToPolyLine()
void SetCellTypeToPentagonalPrism()
void SetCellTypeToPolygon()
void SetCellTypeToBezierQuadrilateral()
void SetCellTypeToLagrangeQuadrilateral()
void SetCellTypeToBezierTriangle()
void SetCellTypeToHexagonalPrism()
void SetCellTypeToBezierHexahedron()
void SetCellTypeToLagrangeHexahedron()
void SetCellTypeToPolyVertex()
void ShallowCopy(vtkCell *c) override
See the vtkCell API for descriptions of these methods.
void SetPointIds(vtkIdList *pointIds)
Set the point ids to use for this cell.
void SetCellTypeToTriQuadraticPyramid()
void SetCellTypeToQuadraticTriangle()
list of point or cell ids
Definition vtkIdList.h:133
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:108
represent and manipulate point attribute data
represent and manipulate 3D points
Definition vtkPoints.h:139
@ VTK_VOXEL
Definition vtkCellType.h:48
@ VTK_QUADRATIC_HEXAHEDRON
Definition vtkCellType.h:61
@ VTK_TRIANGLE_STRIP
Definition vtkCellType.h:43
@ VTK_BIQUADRATIC_QUADRATIC_HEXAHEDRON
Definition vtkCellType.h:70
@ VTK_NUMBER_OF_CELL_TYPES
@ VTK_LAGRANGE_CURVE
@ VTK_PYRAMID
Definition vtkCellType.h:51
@ VTK_PIXEL
Definition vtkCellType.h:45
@ VTK_QUADRATIC_WEDGE
Definition vtkCellType.h:62
@ VTK_BEZIER_WEDGE
@ VTK_BIQUADRATIC_QUAD
Definition vtkCellType.h:64
@ VTK_LAGRANGE_QUADRILATERAL
@ VTK_POLY_LINE
Definition vtkCellType.h:41
@ VTK_TRIQUADRATIC_PYRAMID
Definition vtkCellType.h:66
@ VTK_TRIANGLE
Definition vtkCellType.h:42
@ VTK_BEZIER_TRIANGLE
@ VTK_POLYGON
Definition vtkCellType.h:44
@ VTK_EMPTY_CELL
Definition vtkCellType.h:37
@ VTK_QUADRATIC_PYRAMID
Definition vtkCellType.h:63
@ VTK_POLYHEDRON
Definition vtkCellType.h:80
@ VTK_TRIQUADRATIC_HEXAHEDRON
Definition vtkCellType.h:65
@ VTK_TETRA
Definition vtkCellType.h:47
@ VTK_LINE
Definition vtkCellType.h:40
@ VTK_CONVEX_POINT_SET
Definition vtkCellType.h:77
@ VTK_BEZIER_HEXAHEDRON
@ VTK_LAGRANGE_WEDGE
@ VTK_LAGRANGE_HEXAHEDRON
@ VTK_PENTAGONAL_PRISM
Definition vtkCellType.h:52
@ VTK_QUADRATIC_QUAD
Definition vtkCellType.h:58
@ VTK_WEDGE
Definition vtkCellType.h:50
@ VTK_LAGRANGE_TETRAHEDRON
@ VTK_BEZIER_CURVE
@ VTK_HEXAGONAL_PRISM
Definition vtkCellType.h:53
@ VTK_BEZIER_QUADRILATERAL
@ VTK_QUADRATIC_LINEAR_WEDGE
Definition vtkCellType.h:68
@ VTK_HEXAHEDRON
Definition vtkCellType.h:49
@ VTK_CUBIC_LINE
Definition vtkCellType.h:74
@ VTK_LAGRANGE_TRIANGLE
@ VTK_QUADRATIC_POLYGON
Definition vtkCellType.h:59
@ VTK_QUAD
Definition vtkCellType.h:46
@ VTK_QUADRATIC_TRIANGLE
Definition vtkCellType.h:57
@ VTK_QUADRATIC_EDGE
Definition vtkCellType.h:56
@ VTK_QUADRATIC_TETRA
Definition vtkCellType.h:60
@ VTK_BEZIER_TETRAHEDRON
@ VTK_VERTEX
Definition vtkCellType.h:38
@ VTK_POLY_VERTEX
Definition vtkCellType.h:39
@ VTK_QUADRATIC_LINEAR_QUAD
Definition vtkCellType.h:67
@ VTK_BIQUADRATIC_QUADRATIC_WEDGE
Definition vtkCellType.h:69
@ VTK_BIQUADRATIC_TRIANGLE
Definition vtkCellType.h:71
#define VTK_DEPRECATED_IN_9_4_0(reason)
int vtkIdType
Definition vtkType.h:315