43 #define VTK_CELL_SIZE 512 44 #define VTK_TOL 1.e-05 // Tolerance for geometric calculation 46 #include "vtkCommonDataModelModule.h" 84 virtual void ShallowCopy(
vtkCell *c);
90 virtual void DeepCopy(
vtkCell *c);
95 virtual int GetCellType() = 0;
100 virtual int GetCellDimension() = 0;
145 virtual int GetNumberOfEdges() = 0;
150 virtual int GetNumberOfFaces() = 0;
161 VTK_EXPECTS(0 <= ptId && ptId < GetPointIds()->GetNumberOfIds())
162 {
return this->PointIds->GetId(ptId);}
167 virtual vtkCell *GetEdge(
int edgeId) = 0;
172 virtual vtkCell *GetFace(
int faceId) = 0;
181 virtual int CellBoundary(
int subId,
const double pcoords[3],
vtkIdList *pts) = 0;
200 virtual int EvaluatePosition(
const double x[3],
double closestPoint[3],
201 int& subId,
double pcoords[3],
202 double& dist2,
double weights[]) = 0;
209 virtual void EvaluateLocation(
int& subId,
const double pcoords[3],
210 double x[3],
double *weights) = 0;
244 virtual void Clip(
double value,
vtkDataArray *cellScalars,
258 virtual int IntersectWithLine(
const double p1[3],
const double p2[3],
259 double tol,
double& t,
double x[3],
260 double pcoords[3],
int& subId) = 0;
288 virtual void Derivatives(
int subId,
const double pcoords[3],
const double *values,
289 int dim,
double *derivs) = 0;
296 void GetBounds(
double bounds[6]);
318 virtual int GetParametricCenter(
double pcoords[3]);
328 virtual double GetParametricDistance(
const double pcoords[3]);
350 virtual double *GetParametricCoords()
VTK_SIZEHINT(3*GetNumberOfPoints());
376 void operator=(
const vtkCell&) =
delete;
vtkIdType GetNumberOfPoints()
Return the number of points in the cell.
abstract base class for most VTK objects
represent and manipulate point attribute data
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPoints * GetPoints()
Get the point coordinates for the cell.
represent and manipulate cell attribute data
Abstract class in support of both point location and point insertion.
virtual void InterpolateFunctions(const double vtkNotUsed(pcoords)[3], double *vtkNotUsed(weight))
Compute the interpolation functions/derivatives (aka shape functions/derivatives) No-ops at this leve...
vtkIdType GetPointId(int ptId)
For cell point i, return the actual point id.
virtual int IsLinear()
Non-linear cells require special treatment beyond the usual cell type and connectivity list informati...
virtual void InterpolateDerivs(const double vtkNotUsed(pcoords)[3], double *vtkNotUsed(derivs))
virtual void SetFaces(vtkIdType *vtkNotUsed(faces))
abstract class to specify cell behavior
a simple class to control print indentation
list of point or cell ids
abstract superclass for arrays of numeric data
virtual int RequiresInitialization()
Some cells require initialization prior to access.
#define VTK_SIZEHINT(...)
virtual int RequiresExplicitFaceRepresentation()
Determine whether the cell requires explicit face representation, and methods for setting and getting...
object to represent cell connectivity
virtual int IsExplicitCell()
Explicit cells require additional representational information beyond the usual cell type and connect...
virtual int IsPrimaryCell()
Return whether this cell type has a fixed topology or whether the topology varies depending on the da...
vtkIdList * GetPointIds()
Return the list of point ids defining the cell.
virtual vtkIdType * GetFaces()
virtual void Initialize()
represent and manipulate 3D points