VTK  9.6.20260706
vtkQuadraticWedge.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
45
46#ifndef vtkQuadraticWedge_h
47#define vtkQuadraticWedge_h
48
49#include "vtkCommonDataModelModule.h" // For export macro
50#include "vtkNonLinearCell3D.h"
51
52VTK_ABI_NAMESPACE_BEGIN
56class vtkWedge;
57class vtkDoubleArray;
58
59class VTKCOMMONDATAMODEL_EXPORT vtkQuadraticWedge : public vtkNonLinearCell3D
60{
61public:
64 void PrintSelf(ostream& os, vtkIndent indent) override;
65
67
71 int GetCellType() override { return VTK_QUADRATIC_WEDGE; }
72 int GetNumberOfEdges() override { return 9; }
73 int GetNumberOfFaces() override { return 5; }
74 vtkCell* GetEdge(int edgeId) override;
75 vtkCell* GetFace(int faceId) override;
77
78 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
79 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
80 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
81 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
82 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
83 double& dist2, double weights[]) override;
84 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
85 int TriangulateLocalIds(int index, vtkIdList* ptIds) override;
87 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
88 double* GetParametricCoords() override;
89
95 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
96 vtkCellArray* tetras, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
97 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
98
103 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
104 double pcoords[3], int& subId) override;
105
109 int GetParametricCenter(double pcoords[3]) override;
110
111 static void InterpolationFunctions(const double pcoords[3], double weights[15]);
112 static void InterpolationDerivs(const double pcoords[3], double derivs[45]);
114
118 void InterpolateFunctions(const double pcoords[3], double weights[15]) override
119 {
121 }
122 void InterpolateDerivs(const double pcoords[3], double derivs[45]) override
123 {
125 }
126
128
135 static const vtkIdType* GetEdgeArray(vtkIdType edgeId);
136 static const vtkIdType* GetFaceArray(vtkIdType faceId);
138
140
145 vtkIdType GetEdgePoints(vtkIdType edgeId, const vtkIdType*& pts) override;
146 vtkIdType GetFacePoints(vtkIdType faceId, const vtkIdType*& pts) override;
147 void GetEdgeToAdjacentFaces(vtkIdType edgeId, const vtkIdType*& faceIds) override;
148 vtkIdType GetFaceToAdjacentFaces(vtkIdType faceId, const vtkIdType*& faceIds) override;
149 vtkIdType GetPointToIncidentEdges(vtkIdType pointId, const vtkIdType*& edgeIds) override;
150 vtkIdType GetPointToIncidentFaces(vtkIdType pointId, const vtkIdType*& faceIds) override;
151 vtkIdType GetPointToOneRingPoints(vtkIdType pointId, const vtkIdType*& pts) override;
153
159 void JacobianInverse(const double pcoords[3], double** inverse, double derivs[45]);
160
161protected:
163 ~vtkQuadraticWedge() override = default;
164
172 vtkSmartPointer<vtkDoubleArray> Scalars; // used to avoid New/Delete in contouring/clipping
173
175 vtkPointData* inPd, vtkCellData* inCd, vtkIdType cellId, vtkDataArray* cellScalars);
176
177private:
178 vtkQuadraticWedge(const vtkQuadraticWedge&) = delete;
179 void operator=(const vtkQuadraticWedge&) = delete;
180};
181//----------------------------------------------------------------------------
182// Return the center of the quadratic wedge in parametric coordinates.
183inline int vtkQuadraticWedge::GetParametricCenter(double pcoords[3])
184{
185 pcoords[0] = pcoords[1] = 1. / 3;
186 pcoords[2] = 0.5;
187 return 0;
188}
189
190VTK_ABI_NAMESPACE_END
191#endif
object to represent cell connectivity
represent and manipulate cell attribute data
virtual int GetParametricCenter(double pcoords[3])
Return center of the cell in parametric coordinates.
dynamic, self-adjusting array of double
list of point or cell ids
Definition vtkIdList.h:135
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:108
PointType
Describes the topological role of a point within a non-linear cell.
vtkNonLinearCell3D()=default
Describes the topological role of a point within a non-linear cell.
represent and manipulate point attribute data
cell represents a parabolic, isoparametric edge
cell represents a parabolic, 8-node isoparametric quad
cell represents a parabolic, isoparametric triangle
vtkSmartPointer< vtkDoubleArray > Scalars
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
Compute derivatives given cell subId and parametric coordinates.
PointType GetPointType(vtkIdType pointId) override
Implement the vtkNonLinearCell3D API.
void GetEdgeToAdjacentFaces(vtkIdType edgeId, const vtkIdType *&faceIds) override
Implement the vtkNonLinearCell3D API.
vtkIdType GetPointToOneRingPoints(vtkIdType pointId, const vtkIdType *&pts) override
Implement the vtkNonLinearCell3D API.
vtkIdType GetFaceToAdjacentFaces(vtkIdType faceId, const vtkIdType *&faceIds) override
Implement the vtkNonLinearCell3D API.
vtkIdType GetEdgePoints(vtkIdType edgeId, const vtkIdType *&pts) override
Implement the vtkNonLinearCell3D API.
static void InterpolationDerivs(const double pcoords[3], double derivs[45])
static const vtkIdType * GetFaceArray(vtkIdType faceId)
Return the ids of the vertices defining edge/face (edgeId/‘faceId’).
vtkCell * GetEdge(int edgeId) override
Implement the vtkCell API.
vtkSmartPointer< vtkQuadraticTriangle > TriangleFace
vtkSmartPointer< vtkDoubleArray > CellScalars
void JacobianInverse(const double pcoords[3], double **inverse, double derivs[45])
Given parametric coordinates compute inverse Jacobian transformation matrix.
vtkIdType GetPointToIncidentFaces(vtkIdType pointId, const vtkIdType *&faceIds) override
Implement the vtkNonLinearCell3D API.
vtkSmartPointer< vtkQuadraticQuad > Face
vtkSmartPointer< vtkQuadraticEdge > Edge
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Subdivide(vtkPointData *inPd, vtkCellData *inCd, vtkIdType cellId, vtkDataArray *cellScalars)
vtkSmartPointer< vtkPointData > PointData
vtkSmartPointer< vtkWedge > Wedge
int GetNumberOfEdges() override
Implement the vtkCell API.
int GetCellType() override
Implement the vtkCell API.
vtkCell * GetFace(int faceId) override
Implement the vtkCell API.
int EvaluatePosition(const double x[3], double closestPoint[3], int &subId, double pcoords[3], double &dist2, double weights[]) override
Given a point x[3] return inside(=1), outside(=0) cell, or (-1) computational problem encountered; ev...
vtkIdType GetPointToIncidentEdges(vtkIdType pointId, const vtkIdType *&edgeIds) override
Implement the vtkNonLinearCell3D API.
static const vtkIdType * GetEdgeArray(vtkIdType edgeId)
Return the ids of the vertices defining edge/face (edgeId/‘faceId’).
~vtkQuadraticWedge() override=default
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
Line-edge intersection.
vtkIdType GetFacePoints(vtkIdType faceId, const vtkIdType *&pts) override
Implement the vtkNonLinearCell3D API.
int TriangulateLocalIds(int index, vtkIdList *ptIds) override
Generate simplices of proper dimension.
static void InterpolationFunctions(const double pcoords[3], double weights[15])
double * GetParametricCoords() override
Return a contiguous array of parametric coordinates of the points defining this cell.
void InterpolateFunctions(const double pcoords[3], double weights[15]) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives)
vtkSmartPointer< vtkCellData > CellData
int GetNumberOfFaces() override
Implement the vtkCell API.
void InterpolateDerivs(const double pcoords[3], double derivs[45]) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives)
int GetParametricCenter(double pcoords[3]) override
Return the center of the quadratic wedge in parametric coordinates.
int CellBoundary(int subId, const double pcoords[3], vtkIdList *pts) override
Given parametric coordinates of a point, return the closest cell boundary, and whether the point is i...
void Clip(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *tetras, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, int insideOut) override
Clip this quadratic hexahedron using scalar value provided.
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
Determine global coordinate (x[3]) from subId and parametric coordinates.
static vtkQuadraticWedge * New()
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
Generate contouring primitives.
Hold a reference to a vtkObjectBase instance.
a 3D cell that represents a linear wedge
Definition vtkWedge.h:85
@ VTK_QUADRATIC_WEDGE
Definition vtkCellType.h:62
#define vtkDataArray
int vtkIdType
Definition vtkType.h:363