VTK  9.3.20240424
vtkHigherOrderTetra.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
19#ifndef vtkHigherOrderTetra_h
20#define vtkHigherOrderTetra_h
21
22#include <functional> //For std::function
23
24#include "vtkCommonDataModelModule.h" // For export macro
25#include "vtkNew.h" // For member variable.
26#include "vtkNonLinearCell.h"
27#include "vtkSmartPointer.h" // For member variable.
28
29#include <vector> //For caching
30
31VTK_ABI_NAMESPACE_BEGIN
32class vtkTetra;
35class vtkDoubleArray;
36
37class VTKCOMMONDATAMODEL_EXPORT vtkHigherOrderTetra : public vtkNonLinearCell
38{
39public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
43 int GetCellType() override = 0;
44 int GetCellDimension() override { return 3; }
45 int RequiresInitialization() override { return 1; }
46 int GetNumberOfEdges() override { return 6; }
47 int GetNumberOfFaces() override { return 4; }
48 vtkCell* GetEdge(int edgeId) override = 0;
49 vtkCell* GetFace(int faceId) override = 0;
50 void SetEdgeIdsAndPoints(int edgeId,
51 const std::function<void(const vtkIdType&)>& set_number_of_ids_and_points,
52 const std::function<void(const vtkIdType&, const vtkIdType&)>& set_ids_and_points);
53 static void SetFaceIdsAndPoints(int faceId, int order, vtkIdType numPts,
54 const std::function<void(const vtkIdType&)>& set_number_of_ids_and_points,
55 const std::function<void(const vtkIdType&, const vtkIdType&)>& set_ids_and_points);
56
57 void Initialize() override;
58
59 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
60 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
61 double& dist2, double weights[]) override;
62 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
63 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
64 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
65 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
66 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
67 vtkCellArray* polys, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
68 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
69 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
70 double pcoords[3], int& subId) override;
71 int TriangulateLocalIds(int index, vtkIdList* ptIds) override;
72 void JacobianInverse(const double pcoords[3], double** inverse, double* derivs);
74 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
76 double* GetParametricCoords() override;
77
78 int GetParametricCenter(double pcoords[3]) override;
79 double GetParametricDistance(const double pcoords[3]) override;
80
81 void InterpolateFunctions(const double pcoords[3], double* weights) override = 0;
82 void InterpolateDerivs(const double pcoords[3], double* derivs) override = 0;
83
84 vtkIdType GetOrder() const { return this->Order; }
89 static bool PointCountSupportsUniformOrder(vtkIdType pointsPerCell);
90
92 vtkIdType ToIndex(const vtkIdType* bindex);
93
94 static void BarycentricIndex(vtkIdType index, vtkIdType* bindex, vtkIdType order);
95 static vtkIdType Index(const vtkIdType* bindex, vtkIdType order);
98
99protected:
102
103 vtkIdType GetNumberOfSubtetras() const { return this->NumberOfSubtetras; }
105
106 // Description:
107 // Given the index of the subtriangle, compute the barycentric indices of
108 // the subtriangle's vertices.
109 void SubtetraBarycentricPointIndices(vtkIdType cellIndex, vtkIdType (&pointBIndices)[4][4]);
111 vtkIdType cellIndex, const vtkIdType (&octBIndices)[6][4], vtkIdType (&tetraBIndices)[4][4]);
112
114 vtkDoubleArray* Scalars; // used to avoid New/Delete in contouring/clipping
118
119 std::vector<vtkIdType> EdgeIds;
120 std::vector<vtkIdType> BarycentricIndexMap;
121 std::vector<vtkIdType> IndexMap;
122 std::vector<vtkIdType> SubtetraIndexMap;
123
124private:
126 void operator=(const vtkHigherOrderTetra&) = delete;
127};
128
129VTK_ABI_NAMESPACE_END
130#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
dynamic, self-adjusting array of double
A 3D cell that represents an arbitrary order HigherOrder tetrahedron.
vtkIdType GetOrder() const
void InterpolateFunctions(const double pcoords[3], double *weights) override=0
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
Determine global coordinate (x[3]) from subId and parametric coordinates.
~vtkHigherOrderTetra() override
void ToBarycentricIndex(vtkIdType index, vtkIdType *bindex)
virtual vtkHigherOrderTriangle * GetFaceCell()=0
int GetNumberOfFaces() override
Return the number of faces in the cell.
void TetraFromOctahedron(vtkIdType cellIndex, const vtkIdType(&octBIndices)[6][4], vtkIdType(&tetraBIndices)[4][4])
int TriangulateLocalIds(int index, vtkIdList *ptIds) override
Generate simplices of proper dimension.
vtkIdType ComputeOrder()
void InterpolateDerivs(const double pcoords[3], double *derivs) override=0
static vtkIdType Index(const vtkIdType *bindex, vtkIdType order)
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
Compute derivatives given cell subId and parametric coordinates.
std::vector< vtkIdType > EdgeIds
void SetEdgeIdsAndPoints(int edgeId, const std::function< void(const vtkIdType &)> &set_number_of_ids_and_points, const std::function< void(const vtkIdType &, const vtkIdType &)> &set_ids_and_points)
vtkSmartPointer< vtkPoints > PointParametricCoordinates
void SubtetraBarycentricPointIndices(vtkIdType cellIndex, vtkIdType(&pointBIndices)[4][4])
int GetNumberOfEdges() override
Return the number of edges in the cell.
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
Intersect with a ray.
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.
std::vector< vtkIdType > SubtetraIndexMap
int RequiresInitialization() override
Some cells require initialization prior to access.
std::vector< vtkIdType > BarycentricIndexMap
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...
vtkCell * GetFace(int faceId) override=0
Return the face cell from the faceId of the cell.
vtkIdType GetNumberOfSubtetras() const
vtkIdType ToIndex(const vtkIdType *bindex)
static void BarycentricIndex(vtkIdType index, vtkIdType *bindex, vtkIdType order)
void Clip(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *polys, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, int insideOut) override
Cut (or clip) the cell based on the input cellScalars and the specified value.
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...
static vtkIdType ComputeOrder(vtkIdType nPoints)
double * GetParametricCoords() override
Return a contiguous array of parametric coordinates of the points defining this cell.
virtual vtkHigherOrderCurve * GetEdgeCell()=0
int GetCellType() override=0
Return the type of cell.
vtkIdType ComputeNumberOfSubtetras()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
double GetParametricDistance(const double pcoords[3]) override
Return the distance of the parametric coordinate provided to the cell.
void Initialize() override
static bool PointCountSupportsUniformOrder(vtkIdType pointsPerCell)
Return true if the number of points supports a cell of uniform degree along each axis.
std::vector< vtkIdType > IndexMap
vtkCell * GetEdge(int edgeId) override=0
Return the edge cell from the edgeId of the cell.
void JacobianInverse(const double pcoords[3], double **inverse, double *derivs)
int GetParametricCenter(double pcoords[3]) override
Return center of the cell in parametric coordinates.
static void SetFaceIdsAndPoints(int faceId, int order, vtkIdType numPts, const std::function< void(const vtkIdType &)> &set_number_of_ids_and_points, const std::function< void(const vtkIdType &, const vtkIdType &)> &set_ids_and_points)
int GetCellDimension() override
Return the topological dimensional of the cell (0,1,2, or 3).
A 2D cell that represents an arbitrary order HigherOrder triangle.
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
abstract superclass for non-linear cells
represent and manipulate point attribute data
Hold a reference to a vtkObjectBase instance.
a 3D cell that represents a tetrahedron
Definition vtkTetra.h:113
int vtkIdType
Definition vtkType.h:315