VTK  9.7.20260710
vtkBiQuadraticQuadraticWedge.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
50
51#ifndef vtkBiQuadraticQuadraticWedge_h
52#define vtkBiQuadraticQuadraticWedge_h
53
54#include "vtkCommonDataModelModule.h" // For export macro
55#include "vtkNonLinearCell3D.h"
56
57VTK_ABI_NAMESPACE_BEGIN
61class vtkWedge;
62class vtkDoubleArray;
63
64class VTKCOMMONDATAMODEL_EXPORT vtkBiQuadraticQuadraticWedge : public vtkNonLinearCell3D
65{
66public:
69 void PrintSelf(ostream& os, vtkIndent indent) override;
70
72
77 int GetNumberOfEdges() override { return 9; }
78 int GetNumberOfFaces() override { return 5; }
79 vtkCell* GetEdge(int edgeId) override;
80 vtkCell* GetFace(int faceId) override;
82
83 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
84 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
85 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
86 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
87 int EvaluatePosition(const double x[3], double* closestPoint, int& subId, double pcoords[3],
88 double& dist2, double* weights) override;
89 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
90 int TriangulateLocalIds(int index, vtkIdList* ptIds) override;
92 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
93 double* GetParametricCoords() override;
94
100 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
101 vtkCellArray* tetras, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
102 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
103
108 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
109 double pcoords[3], int& subId) override;
110
114 int GetParametricCenter(double pcoords[3]) override;
115
116 static void InterpolationFunctions(const double pcoords[3], double weights[18]);
117 static void InterpolationDerivs(const double pcoords[3], double derivs[54]);
119
123 void InterpolateFunctions(const double pcoords[3], double weights[18]) override
124 {
126 }
127 void InterpolateDerivs(const double pcoords[3], double derivs[54]) override
128 {
130 }
131
133
140 static const vtkIdType* GetEdgeArray(vtkIdType edgeId);
141 static const vtkIdType* GetFaceArray(vtkIdType faceId);
143
145
150 vtkIdType GetEdgePoints(vtkIdType edgeId, const vtkIdType*& pts) override;
151 vtkIdType GetFacePoints(vtkIdType faceId, const vtkIdType*& pts) override;
152 void GetEdgeToAdjacentFaces(vtkIdType edgeId, const vtkIdType*& faceIds) override;
153 vtkIdType GetFaceToAdjacentFaces(vtkIdType faceId, const vtkIdType*& faceIds) override;
154 vtkIdType GetPointToIncidentEdges(vtkIdType pointId, const vtkIdType*& edgeIds) override;
155 vtkIdType GetPointToIncidentFaces(vtkIdType pointId, const vtkIdType*& faceIds) override;
156 vtkIdType GetPointToOneRingPoints(vtkIdType pointId, const vtkIdType*& pts) override;
158
164 void JacobianInverse(const double pcoords[3], double** inverse, double derivs[54]);
165
166protected:
168 ~vtkBiQuadraticQuadraticWedge() override = default;
169
174 vtkSmartPointer<vtkDoubleArray> Scalars; // used to avoid New/Delete in contouring/clipping
175
176private:
178 void operator=(const vtkBiQuadraticQuadraticWedge&) = delete;
179};
180//----------------------------------------------------------------------------
181// Return the center of the quadratic wedge in parametric coordinates.
183{
184 pcoords[0] = pcoords[1] = 1. / 3;
185 pcoords[2] = 0.5;
186 return 0;
187}
188
189VTK_ABI_NAMESPACE_END
190#endif
cell represents a parabolic, 9-node isoparametric quad
vtkIdType GetFaceToAdjacentFaces(vtkIdType faceId, const vtkIdType *&faceIds) override
Implement the vtkNonLinearCell3D API.
double * GetParametricCoords() override
Return a contiguous array of parametric coordinates of the points defining this cell.
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 GetEdgeToAdjacentFaces(vtkIdType edgeId, const vtkIdType *&faceIds) override
Implement the vtkNonLinearCell3D API.
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
Compute derivatives given cell subId and parametric coordinates.
vtkSmartPointer< vtkQuadraticEdge > Edge
vtkIdType GetFacePoints(vtkIdType faceId, const vtkIdType *&pts) override
Implement the vtkNonLinearCell3D API.
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.
static void InterpolationFunctions(const double pcoords[3], double weights[18])
vtkSmartPointer< vtkDoubleArray > Scalars
~vtkBiQuadraticQuadraticWedge() override=default
int TriangulateLocalIds(int index, vtkIdList *ptIds) override
Generate simplices of proper dimension.
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
Determine global coordinate (x[3]) from subId and parametric coordinates.
PointType GetPointType(vtkIdType pointId) override
Implement the vtkNonLinearCell3D API.
static const vtkIdType * GetEdgeArray(vtkIdType edgeId)
Return the ids of the vertices defining edge/face (edgeId/‘faceId’).
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void InterpolateDerivs(const double pcoords[3], double derivs[54]) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives)
vtkIdType GetPointToIncidentFaces(vtkIdType pointId, const vtkIdType *&faceIds) override
Implement the vtkNonLinearCell3D API.
vtkIdType GetEdgePoints(vtkIdType edgeId, const vtkIdType *&pts) override
Implement the vtkNonLinearCell3D API.
int GetNumberOfEdges() override
Implement the vtkCell API.
vtkSmartPointer< vtkBiQuadraticQuad > Face
static vtkBiQuadraticQuadraticWedge * New()
int GetNumberOfFaces() override
Implement the vtkCell API.
vtkIdType GetPointToIncidentEdges(vtkIdType pointId, const vtkIdType *&edgeIds) override
Implement the vtkNonLinearCell3D API.
static void InterpolationDerivs(const double pcoords[3], double derivs[54])
int GetCellType() override
Implement the vtkCell API.
static const vtkIdType * GetFaceArray(vtkIdType faceId)
Return the ids of the vertices defining edge/face (edgeId/‘faceId’).
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.
void InterpolateFunctions(const double pcoords[3], double weights[18]) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives)
int EvaluatePosition(const double x[3], double *closestPoint, int &subId, double pcoords[3], double &dist2, double *weights) override
vtkCell * GetEdge(int edgeId) override
Implement the vtkCell API.
vtkSmartPointer< vtkQuadraticTriangle > TriangleFace
void JacobianInverse(const double pcoords[3], double **inverse, double derivs[54])
Given parametric coordinates compute inverse Jacobian transformation matrix.
vtkIdType GetPointToOneRingPoints(vtkIdType pointId, const vtkIdType *&pts) override
Implement the vtkNonLinearCell3D API.
vtkCell * GetFace(int faceId) override
Implement the vtkCell API.
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 Wedge using scalar value provided.
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, isoparametric triangle
Hold a reference to a vtkObjectBase instance.
a 3D cell that represents a linear wedge
Definition vtkWedge.h:85
@ VTK_BIQUADRATIC_QUADRATIC_WEDGE
Definition vtkCellType.h:69
#define vtkDataArray
int vtkIdType
Definition vtkType.h:363