VTK  9.2.6
vtkPolyhedron.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPolyhedron.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=========================================================================*/
47#ifndef vtkPolyhedron_h
48#define vtkPolyhedron_h
49
50#include "vtkCell3D.h"
51#include "vtkCommonDataModelModule.h" // For export macro
52
53class vtkIdTypeArray;
54class vtkCellArray;
55class vtkTriangle;
56class vtkQuad;
57class vtkTetra;
58class vtkPolygon;
59class vtkLine;
60class vtkPointIdMap;
61class vtkIdToIdVectorMapType;
62class vtkIdToIdMapType;
63class vtkEdgeTable;
64class vtkPolyData;
65class vtkCellLocator;
66class vtkGenericCell;
67class vtkPointLocator;
68
69class VTKCOMMONDATAMODEL_EXPORT vtkPolyhedron : public vtkCell3D
70{
71public:
73
76 static vtkPolyhedron* New();
77 vtkTypeMacro(vtkPolyhedron, vtkCell3D);
78 void PrintSelf(ostream& os, vtkIndent indent) override;
80
82
86 void GetEdgePoints(vtkIdType vtkNotUsed(edgeId), const vtkIdType*& vtkNotUsed(pts)) override
87 {
88 vtkWarningMacro(<< "vtkPolyhedron::GetEdgePoints Not Implemented");
89 }
90 vtkIdType GetFacePoints(vtkIdType vtkNotUsed(faceId), const vtkIdType*& vtkNotUsed(pts)) override
91 {
92 vtkWarningMacro(<< "vtkPolyhedron::GetFacePoints Not Implemented");
93 return 0;
94 }
96 vtkIdType vtkNotUsed(edgeId), const vtkIdType*& vtkNotUsed(pts)) override
97 {
98 vtkWarningMacro(<< "vtkPolyhedron::GetEdgeToAdjacentFaces Not Implemented");
99 }
101 vtkIdType vtkNotUsed(faceId), const vtkIdType*& vtkNotUsed(faceIds)) override
102 {
103 vtkWarningMacro(<< "vtkPolyhedron::GetFaceToAdjacentFaces Not Implemented");
104 return 0;
105 }
107 vtkIdType vtkNotUsed(pointId), const vtkIdType*& vtkNotUsed(edgeIds)) override
108 {
109 vtkWarningMacro(<< "vtkPolyhedron::GetPointToIncidentEdges Not Implemented");
110 return 0;
111 }
112 vtkIdType GetPointToIncidentFaces(vtkIdType pointId, const vtkIdType*& faceIds) override;
114 vtkIdType vtkNotUsed(pointId), const vtkIdType*& vtkNotUsed(pts)) override
115 {
116 vtkWarningMacro(<< "vtkPolyhedron::GetPointToOneRingPoints Not Implemented");
117 return 0;
118 }
119 bool GetCentroid(double vtkNotUsed(centroid)[3]) const override
120 {
121 vtkWarningMacro(<< "vtkPolyhedron::GetCentroid Not Implemented");
122 return false;
123 }
125
129 double* GetParametricCoords() override;
130
134 int GetCellType() override { return VTK_POLYHEDRON; }
135
139 int RequiresInitialization() override { return 1; }
140 void Initialize() override;
141
143
147 int GetNumberOfEdges() override;
148 vtkCell* GetEdge(int) override;
149 int GetNumberOfFaces() override;
150 vtkCell* GetFace(int faceId) override;
152
158 void Contour(double value, vtkDataArray* scalars, vtkIncrementalPointLocator* locator,
159 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
160 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
161
171 void Clip(double value, vtkDataArray* scalars, vtkIncrementalPointLocator* locator,
172 vtkCellArray* connectivity, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
173 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
174
182 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
183 double& dist2, double weights[]) override;
184
189 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
190
197 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
198 double pcoords[3], int& subId) override;
199
215 int Triangulate(int index, vtkIdList* ptIds, vtkPoints* pts) override;
216
225 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
226
231 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
232
237 int GetParametricCenter(double pcoords[3]) override;
238
242 int IsPrimaryCell() override { return 1; }
243
245
250 void InterpolateFunctions(const double x[3], double* sf) override;
251 void InterpolateDerivs(const double x[3], double* derivs) override;
253
255
263 int RequiresExplicitFaceRepresentation() override { return 1; }
264 void SetFaces(vtkIdType* faces) override;
265 vtkIdType* GetFaces() override;
267
274 int IsInside(const double x[3], double tolerance);
275
282 bool IsConvex();
283
288
289protected:
291 ~vtkPolyhedron() override;
292
293 // Internal classes for supporting operations on this cell
299 vtkIdTypeArray* GlobalFaces; // these are numbered in global id space
301
302 // vtkCell has the data members Points (x,y,z coordinates) and PointIds
303 // (global cell ids corresponding to cell canonical numbering (0,1,2,....)).
304 // These data members are implicitly organized in canonical space, i.e., where
305 // the cell point ids are (0,1,...,npts-1). The PointIdMap maps global point id
306 // back to these canonoical point ids.
307 vtkPointIdMap* PointIdMap;
308
309 // If edges are needed. Note that the edge numbering is in
310 // canonical space.
311 int EdgesGenerated; // true/false
312 vtkEdgeTable* EdgeTable; // keep track of all edges
313 vtkIdTypeArray* Edges; // edge pairs kept in this list, in canonical id space
314 vtkIdTypeArray* EdgeFaces; // face pairs that comprise each edge, with the
315 // same ordering as EdgeTable
316 int GenerateEdges(); // method populates the edge table and edge array
317
318 // If faces need renumbering into canonical numbering space these members
319 // are used. When initiallly loaded, the face numbering uses global dataset
320 // ids. Once renumbered, they are converted to canonical space.
321 vtkIdTypeArray* Faces; // these are numbered in canonical id space
324
325 // Bounds management
328 void ComputeParametricCoordinate(const double x[3], double pc[3]);
329 void ComputePositionFromParametricCoordinate(const double pc[3], double x[3]);
330
332
333 // Members for supporting geometric operations
343
344 // Members used in GetPointToIncidentFaces
347
348private:
349 vtkPolyhedron(const vtkPolyhedron&) = delete;
350 void operator=(const vtkPolyhedron&) = delete;
351};
352
353//----------------------------------------------------------------------------
354inline int vtkPolyhedron::GetParametricCenter(double pcoords[3])
355{
356 pcoords[0] = pcoords[1] = pcoords[2] = 0.5;
357 return 0;
358}
359
360#endif
abstract class to specify 3D cell interface
Definition vtkCell3D.h:39
object to represent cell connectivity
represent and manipulate cell attribute data
Definition vtkCellData.h:51
octree-based spatial search object to quickly locate cells
abstract class to specify cell behavior
Definition vtkCell.h:70
virtual int GetParametricCenter(double pcoords[3])
Return center of the cell in parametric coordinates.
abstract superclass for arrays of numeric data
keep track of edges (edge is pair of integer id's)
provides thread-safe access to cells
list of point or cell ids
Definition vtkIdList.h:43
dynamic, self-adjusting array of vtkIdType
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:49
cell represents a 1D line
Definition vtkLine.h:43
represent and manipulate point attribute data
quickly locate points in 3-space
represent and manipulate 3D points
Definition vtkPoints.h:49
concrete dataset represents vertices, lines, polygons, and triangle strips
a cell that represents an n-sided polygon
Definition vtkPolygon.h:52
a 3D cell defined by a set of polygonal faces
vtkIdType GetFacePoints(vtkIdType vtkNotUsed(faceId), const vtkIdType *&vtkNotUsed(pts)) override
See vtkCell3D API for description of these methods.
vtkIdType GetPointToIncidentFaces(vtkIdType pointId, const vtkIdType *&faceIds) override
See vtkCell3D API for description of these methods.
vtkPointIdMap * PointIdMap
int RequiresExplicitFaceRepresentation() override
Methods supporting the definition of faces.
vtkIdList * CellIds
int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts) override
Use vtkOrderedTriangulator to tetrahedralize the polyhedron mesh.
int GenerateEdges()
int GetNumberOfFaces() override
A polyhedron is represented internally by a set of polygonal faces.
void SetFaces(vtkIdType *faces) override
Methods supporting the definition of faces.
int EvaluatePosition(const double x[3], double closestPoint[3], int &subId, double pcoords[3], double &dist2, double weights[]) override
Satisfy the vtkCell API.
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
Intersect the line (p1,p2) with a given tolerance tol to determine a point of intersection x[3] with ...
~vtkPolyhedron() override
void GenerateFaces()
vtkIdType GetPointToIncidentEdges(vtkIdType vtkNotUsed(pointId), const vtkIdType *&vtkNotUsed(edgeIds)) override
See vtkCell3D API for description of these methods.
void ComputeParametricCoordinate(const double x[3], double pc[3])
vtkIdType * ValenceAtPoint
vtkEdgeTable * EdgeTable
void ComputeBounds()
void GetEdgeToAdjacentFaces(vtkIdType vtkNotUsed(edgeId), const vtkIdType *&vtkNotUsed(pts)) override
See vtkCell3D API for description of these methods.
vtkIdType GetPointToOneRingPoints(vtkIdType vtkNotUsed(pointId), const vtkIdType *&vtkNotUsed(pts)) override
See vtkCell3D API for description of these methods.
vtkIdType GetFaceToAdjacentFaces(vtkIdType vtkNotUsed(faceId), const vtkIdType *&vtkNotUsed(faceIds)) override
See vtkCell3D API for description of these methods.
void GetEdgePoints(vtkIdType vtkNotUsed(edgeId), const vtkIdType *&vtkNotUsed(pts)) override
See vtkCell3D API for description of these methods.
vtkPolygon * Polygon
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
The inverse of EvaluatePosition.
void InterpolateFunctions(const double x[3], double *sf) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives).
vtkCellLocator * CellLocator
void Contour(double value, vtkDataArray *scalars, vtkIncrementalPointLocator *locator, vtkCellArray *verts, vtkCellArray *lines, vtkCellArray *polys, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd) override
Satisfy the vtkCell API.
int IsInside(const double x[3], double tolerance)
A method particular to vtkPolyhedron.
vtkIdTypeArray * EdgeFaces
vtkTriangle * Triangle
int GetParametricCenter(double pcoords[3]) override
Return the center of the cell in parametric coordinates.
vtkIdTypeArray * GlobalFaces
double * GetParametricCoords() override
See vtkCell3D API for description of this method.
vtkIdTypeArray * Edges
void InterpolateDerivs(const double x[3], double *derivs) override
Compute the interpolation functions/derivatives (aka shape functions/derivatives).
bool IsConvex()
Determine whether or not a polyhedron is convex.
void ConstructPolyData()
vtkIdType ** PointToIncidentFaces
int GetNumberOfEdges() override
A polyhedron is represented internally by a set of polygonal faces.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard new methods.
void GeneratePointToIncidentFacesAndValenceAtPoint()
vtkIdTypeArray * Faces
vtkPolyData * PolyData
int IsPrimaryCell() override
A polyhedron is a full-fledged primary cell.
vtkPolyData * GetPolyData()
Construct polydata if no one exist, then return this->PolyData.
vtkCell * GetEdge(int) override
A polyhedron is represented internally by a set of polygonal faces.
vtkTetra * Tetra
vtkCell * GetFace(int faceId) override
A polyhedron is represented internally by a set of polygonal faces.
void ConstructLocator()
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
Computes derivatives at the point specified by the parameter coordinate.
bool GetCentroid(double vtkNotUsed(centroid)[3]) const override
See vtkCell3D API for description of these methods.
vtkIdType * GetFaces() override
Methods supporting the definition of faces.
int RequiresInitialization() override
This cell requires that it be initialized prior to access.
vtkGenericCell * Cell
void ComputePositionFromParametricCoordinate(const double pc[3], double x[3])
static vtkPolyhedron * New()
Standard new methods.
vtkCellArray * Polys
int GetCellType() override
See the vtkCell API for descriptions of these methods.
int CellBoundary(int subId, const double pcoords[3], vtkIdList *pts) override
Find the boundary face closest to the point defined by the pcoords[3] and subId of the cell (subId ca...
vtkIdTypeArray * FaceLocations
void Clip(double value, vtkDataArray *scalars, vtkIncrementalPointLocator *locator, vtkCellArray *connectivity, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, int insideOut) override
Satisfy the vtkCell API.
void Initialize() override
a cell that represents a 2D quadrilateral
Definition vtkQuad.h:48
a 3D cell that represents a tetrahedron
Definition vtkTetra.h:54
a cell that represents a triangle
Definition vtkTriangle.h:48
@ VTK_POLYHEDRON
Definition vtkCellType.h:89
int vtkIdType
Definition vtkType.h:332