VTK  9.5.2
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
20
21#ifndef vtkGenericCell_h
22#define vtkGenericCell_h
23
24#include "vtkCell.h"
25#include "vtkCommonDataModelModule.h" // For export macro
26
27VTK_ABI_NAMESPACE_BEGIN
28class VTKCOMMONDATAMODEL_EXPORT vtkGenericCell : public vtkCell
29{
30public:
35
36 vtkTypeMacro(vtkGenericCell, vtkCell);
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
43 void SetPoints(vtkPoints* points);
44
49 void SetPointIds(vtkIdList* pointIds);
50
52
55 void ShallowCopy(vtkCell* c) override;
56 void DeepCopy(vtkCell* c) override;
57 int GetCellType() override;
58 int GetCellDimension() override;
59 int IsLinear() VTK_FUTURE_CONST override;
60 int RequiresInitialization() override;
61 void Initialize() override;
62 int RequiresExplicitFaceRepresentation() VTK_FUTURE_CONST override;
63 VTK_DEPRECATED_IN_9_4_0("Use SetCellFaces.")
64 void SetFaces(vtkIdType* faces) override;
65 VTK_DEPRECATED_IN_9_4_0("Use GetCellFaces.")
66 vtkIdType* GetFaces() override;
70 int GetNumberOfEdges() override;
71 int GetNumberOfFaces() override;
72 vtkCell* GetEdge(int edgeId) override;
73 vtkCell* GetFace(int faceId) override;
74 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
75 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
76 double& dist2, double weights[]) override;
77 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
78 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
79 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
80 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
81 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
82 vtkCellArray* connectivity, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
83 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
84 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
85 double pcoords[3], int& subId) override;
86 int Triangulate(int index, vtkIdList* ptIds, vtkPoints* pts) override;
87 int TriangulateLocalIds(int index, vtkIdList* ptIds) override;
88 int TriangulateIds(int index, vtkIdList* ptIds) override;
90 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
91 int GetParametricCenter(double pcoords[3]) override;
92 double* GetParametricCoords() override;
93 int IsPrimaryCell() VTK_FUTURE_CONST override;
95
97
101 void InterpolateFunctions(const double pcoords[3], double* weights) override;
102 void InterpolateDerivs(const double pcoords[3], double* derivs) override;
104
112 void SetCellType(int cellType);
161
171 static vtkCell* InstantiateCell(int cellType);
172
173 vtkCell* GetRepresentativeCell() { return this->Cell; }
174
175protected:
177 ~vtkGenericCell() override;
178
181
182private:
183 vtkGenericCell(const vtkGenericCell&) = delete;
184 void operator=(const vtkGenericCell&) = delete;
185};
186
187VTK_ABI_NAMESPACE_END
188#endif
object to represent cell connectivity
represent and manipulate cell attribute data
Definition vtkCellData.h:32
void SetCellTypeToLagrangeCurve()
void SetCellTypeToHexahedron()
vtkIdType * GetFaces() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToQuadraticLinearWedge()
int IsLinear() VTK_FUTURE_CONST override
See the vtkCell API for descriptions of these methods.
static vtkCell * InstantiateCell(int cellType)
Instantiate a new vtkCell based on it's cell type value.
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToLagrangeWedge()
void Initialize() override
See the vtkCell API for descriptions of these methods.
vtkCell * GetFace(int faceId) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToQuadraticWedge()
void SetCellTypeToQuadraticPolygon()
int CellBoundary(int subId, const double pcoords[3], vtkIdList *pts) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToPyramid()
void SetCellTypeToQuadraticTetra()
int SetCellFaces(vtkCellArray *faces)
See the vtkCell API for descriptions of these methods.
void SetCellTypeToTriangleStrip()
void SetCellTypeToPixel()
int RequiresInitialization() override
See the vtkCell API for descriptions of these methods.
vtkCell * GetRepresentativeCell()
int EvaluatePosition(const double x[3], double closestPoint[3], int &subId, double pcoords[3], double &dist2, double weights[]) override
See the vtkCell API for descriptions of these methods.
int IsPrimaryCell() VTK_FUTURE_CONST override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToQuadraticQuad()
vtkCellArray * GetCellFaces()
See the vtkCell API for descriptions of these methods.
void SetCellTypeToQuadraticLinearQuad()
int TriangulateIds(int index, vtkIdList *ptIds) override
See the vtkCell API for descriptions of these methods.
int GetParametricCenter(double pcoords[3]) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToBezierWedge()
void SetCellTypeToTetra()
~vtkGenericCell() override
void Clip(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *connectivity, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, int insideOut) override
See the vtkCell API for descriptions of these methods.
static vtkGenericCell * New()
Create handle to any type of cell; by default a vtkEmptyCell.
void SetCellTypeToLagrangeTetra()
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
See the vtkCell API for descriptions of these methods.
void Contour(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *verts, vtkCellArray *lines, vtkCellArray *polys, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToPolyhedron()
void InterpolateDerivs(const double pcoords[3], double *derivs) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives).
void SetCellTypeToBezierTetra()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetCellTypeToQuadraticHexahedron()
void SetCellTypeToVoxel()
void SetPoints(vtkPoints *points)
Set the points object to use for this cell.
void SetFaces(vtkIdType *faces) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToTriQuadraticHexahedron()
vtkCell * CellStore[VTK_NUMBER_OF_CELL_TYPES]
int TriangulateLocalIds(int index, vtkIdList *ptIds) override
See the vtkCell API for descriptions of these methods.
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToBiQuadraticQuadraticHexahedron()
void SetCellTypeToBiQuadraticQuad()
void SetCellTypeToCubicLine()
double * GetParametricCoords() override
See the vtkCell API for descriptions of these methods.
int GetNumberOfEdges() 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()
int GetNumberOfFaces() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToLagrangeTriangle()
void SetCellTypeToWedge()
void SetCellType(int cellType)
This method is used to support the vtkDataSet::GetCell(vtkGenericCell *) method.
int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToTriangle()
void SetCellTypeToQuadraticPyramid()
void SetCellTypeToQuadraticEdge()
int GetCellType() override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToBiQuadraticQuadraticWedge()
int RequiresExplicitFaceRepresentation() VTK_FUTURE_CONST override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToBiQuadraticTriangle()
void SetCellTypeToPolyLine()
void SetCellTypeToPentagonalPrism()
void SetCellTypeToPolygon()
void SetCellTypeToBezierQuadrilateral()
void SetCellTypeToLagrangeQuadrilateral()
void SetCellTypeToBezierTriangle()
void InterpolateFunctions(const double pcoords[3], double *weights) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives).
vtkCell * GetEdge(int edgeId) override
See the vtkCell API for descriptions of these methods.
void SetCellTypeToHexagonalPrism()
void SetCellTypeToBezierHexahedron()
void SetCellTypeToEmptyCell()
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:24
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:29
represent and manipulate point attribute data
represent and manipulate 3D points
Definition vtkPoints.h:30
@ 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 vtkDataArray
#define VTK_DEPRECATED_IN_9_4_0(reason)
int vtkIdType
Definition vtkType.h:332