VTK  9.3.20240419
vtkBezierHexahedron.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
17 #ifndef vtkBezierHexahedron_h
18 #define vtkBezierHexahedron_h
19 
20 #include "vtkCellType.h" // For GetCellType.
21 #include "vtkCommonDataModelModule.h" // For export macro
23 #include "vtkNew.h" // For member variable.
24 #include "vtkSmartPointer.h" // For member variable.
25 
26 VTK_ABI_NAMESPACE_BEGIN
27 class vtkCellData;
28 class vtkDoubleArray;
29 class vtkHexahedron;
30 class vtkIdList;
31 class vtkBezierCurve;
34 class vtkPointData;
35 class vtkPoints;
36 class vtkVector3d;
37 class vtkVector3i;
38 class vtkDataSet;
39 
40 class VTKCOMMONDATAMODEL_EXPORT vtkBezierHexahedron : public vtkHigherOrderHexahedron
41 {
42 public:
45 
46  void PrintSelf(ostream& os, vtkIndent indent) override;
47  int GetCellType() override { return VTK_BEZIER_HEXAHEDRON; }
48  vtkCell* GetEdge(int edgeId) override;
49  vtkCell* GetFace(int faceId) override;
50  void InterpolateFunctions(const double pcoords[3], double* weights) override;
51  void InterpolateDerivs(const double pcoords[3], double* derivs) override;
52 
54 
59 
60 protected:
62  int subId, vtkDataArray* scalarsIn = nullptr, vtkDataArray* scalarsOut = nullptr) override;
65 
70 
71 private:
73  void operator=(const vtkBezierHexahedron&) = delete;
74 };
75 
76 VTK_ABI_NAMESPACE_END
77 #endif // vtkBezierHexahedron_h
A 3D cell that represents an arbitrary order Bezier hex.
vtkNew< vtkBezierCurve > EdgeCell
vtkNew< vtkDoubleArray > RationalWeights
vtkNew< vtkBezierQuadrilateral > FaceCell
void SetRationalWeightsFromPointData(vtkPointData *point_data, vtkIdType numPts)
vtkCell * GetEdge(int edgeId) override
Return the edge cell from the edgeId of the cell.
void InterpolateFunctions(const double pcoords[3], double *weights) override
vtkCell * GetFace(int faceId) override
Return the face cell from the faceId of the cell.
static vtkBezierHexahedron * New()
void InterpolateDerivs(const double pcoords[3], double *derivs) override
vtkDoubleArray * GetRationalWeights()
~vtkBezierHexahedron() override
int GetCellType() override
Return the type of cell.
vtkNew< vtkBezierInterpolation > Interp
vtkHigherOrderInterpolation * GetInterpolation() override
vtkHigherOrderQuadrilateral * GetFaceCell() override
vtkHexahedron * GetApproximateHex(int subId, vtkDataArray *scalarsIn=nullptr, vtkDataArray *scalarsOut=nullptr) override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkHigherOrderCurve * GetEdgeCell() override
represent and manipulate cell attribute data
Definition: vtkCellData.h:141
abstract class to specify cell behavior
Definition: vtkCell.h:130
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:155
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
dynamic, self-adjusting array of double
a cell that represents a linear 3D hexahedron
A 3D cell that represents an arbitrary order HigherOrder hex.
list of point or cell ids
Definition: vtkIdList.h:133
a simple class to control print indentation
Definition: vtkIndent.h:108
represent and manipulate point attribute data
Definition: vtkPointData.h:140
represent and manipulate 3D points
Definition: vtkPoints.h:139
@ VTK_BEZIER_HEXAHEDRON
Definition: vtkCellType.h:133
int vtkIdType
Definition: vtkType.h:315