VTK  9.4.20250114
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
26VTK_ABI_NAMESPACE_BEGIN
27class vtkCellData;
28class vtkDoubleArray;
29class vtkHexahedron;
30class vtkIdList;
31class vtkBezierCurve;
34class vtkPointData;
35class vtkPoints;
36class vtkVector3d;
37class vtkVector3i;
38class vtkDataSet;
39
40class VTKCOMMONDATAMODEL_EXPORT vtkBezierHexahedron : public vtkHigherOrderHexahedron
41{
42public:
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
60protected:
62 int subId, vtkDataArray* scalarsIn = nullptr, vtkDataArray* scalarsOut = nullptr) override;
65
70
71private:
73 void operator=(const vtkBezierHexahedron&) = delete;
74};
75
76VTK_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 * GetFace(int faceId) override
Return the face cell from the faceId of the cell.
vtkDoubleArray * GetRationalWeights()
void InterpolateFunctions(const double pcoords[3], double *weights) override
vtkHigherOrderCurve * GetEdgeCell() override
void InterpolateDerivs(const double pcoords[3], double *derivs) override
~vtkBezierHexahedron() override
int GetCellType() override
Return the type of cell.
vtkHigherOrderInterpolation * GetInterpolation() override
vtkHexahedron * GetApproximateHex(int subId, vtkDataArray *scalarsIn=nullptr, vtkDataArray *scalarsOut=nullptr) override
vtkNew< vtkBezierInterpolation > Interp
static vtkBezierHexahedron * New()
vtkHigherOrderQuadrilateral * GetFaceCell() override
vtkCell * GetEdge(int edgeId) override
Return the edge cell from the edgeId of the cell.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
represent and manipulate cell attribute data
abstract class to specify cell behavior
Definition vtkCell.h:130
abstract superclass for arrays of numeric data
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
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
Allocate and hold a VTK object.
Definition vtkNew.h:167
represent and manipulate point attribute data
represent and manipulate 3D points
Definition vtkPoints.h:139
@ VTK_BEZIER_HEXAHEDRON
int vtkIdType
Definition vtkType.h:315