VTK  9.2.6
vtkBezierHexahedron.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkBezierHexahedron.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
29#ifndef vtkBezierHexahedron_h
30#define vtkBezierHexahedron_h
31
32#include "vtkCellType.h" // For GetCellType.
33#include "vtkCommonDataModelModule.h" // For export macro
34#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_1_0
36#include "vtkNew.h" // For member variable.
37#include "vtkSmartPointer.h" // For member variable.
38
39class vtkCellData;
40class vtkDoubleArray;
41class vtkHexahedron;
42class vtkIdList;
43class vtkBezierCurve;
46class vtkPointData;
47class vtkPoints;
48class vtkVector3d;
49class vtkVector3i;
50class vtkDataSet;
51
52class VTKCOMMONDATAMODEL_EXPORT vtkBezierHexahedron : public vtkHigherOrderHexahedron
53{
54public:
57
58 void PrintSelf(ostream& os, vtkIndent indent) override;
59 int GetCellType() override { return VTK_BEZIER_HEXAHEDRON; }
60 vtkCell* GetEdge(int edgeId) override;
61 vtkCell* GetFace(int faceId) override;
63 "EvaluateLocationProjectedNode is deprecated, use instead EvaluateLocation.")
64 void EvaluateLocationProjectedNode(
65 int& subId, const vtkIdType point_id, double x[3], double* weights);
66 void InterpolateFunctions(const double pcoords[3], double* weights) override;
67 void InterpolateDerivs(const double pcoords[3], double* derivs) override;
68
69 void SetRationalWeightsFromPointData(vtkPointData* point_data, const vtkIdType numPts);
70
71 vtkDoubleArray* GetRationalWeights();
72 vtkHigherOrderCurve* GetEdgeCell() override;
73 vtkHigherOrderQuadrilateral* GetFaceCell() override;
74 vtkHigherOrderInterpolation* GetInterpolation() override;
75
76protected:
77 vtkHexahedron* GetApproximateHex(
78 int subId, vtkDataArray* scalarsIn = nullptr, vtkDataArray* scalarsOut = nullptr) override;
81
82 vtkNew<vtkDoubleArray> RationalWeights;
86
87private:
89 void operator=(const vtkBezierHexahedron&) = delete;
90};
91
92#endif // vtkBezierHexahedron_h
A 3D cell that represents an arbitrary order Bezier hex.
vtkCell * GetFace(int faceId) override
Return the face cell from the faceId of the cell.
int GetCellType() override
Return the type of cell.
static vtkBezierHexahedron * New()
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
Definition vtkCellData.h:42
abstract class to specify cell behavior
Definition vtkCell.h:61
abstract superclass for arrays of numeric data
abstract class to specify dataset behavior
Definition vtkDataSet.h:63
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:34
a simple class to control print indentation
Definition vtkIndent.h:40
Allocate and hold a VTK object.
Definition vtkNew.h:62
represent and manipulate point attribute data
represent and manipulate 3D points
Definition vtkPoints.h:40
@ VTK_BEZIER_HEXAHEDRON
#define VTK_DEPRECATED_IN_9_1_0(reason)
int vtkIdType
Definition vtkType.h:332