VTK  9.3.0
vtkTriangleStrip.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
27#ifndef vtkTriangleStrip_h
28#define vtkTriangleStrip_h
29
30#include "vtkCell.h"
31#include "vtkCommonDataModelModule.h" // For export macro
32
33VTK_ABI_NAMESPACE_BEGIN
34class vtkLine;
35class vtkTriangle;
37
38class VTKCOMMONDATAMODEL_EXPORT vtkTriangleStrip : public vtkCell
39{
40public:
42 vtkTypeMacro(vtkTriangleStrip, vtkCell);
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
46
49 int GetCellType() override { return VTK_TRIANGLE_STRIP; }
50 int GetCellDimension() override { return 2; }
51 int GetNumberOfEdges() override { return this->GetNumberOfPoints(); }
52 int GetNumberOfFaces() override { return 0; }
53 vtkCell* GetEdge(int edgeId) override;
54 vtkCell* GetFace(int vtkNotUsed(faceId)) override { return nullptr; }
55 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
56 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
57 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
58 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
59 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
60 vtkCellArray* polys, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
61 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
63
64 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
65 double& dist2, double weights[]) override;
66 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
67 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
68 double pcoords[3], int& subId) override;
69 int Triangulate(int index, vtkIdList* ptIds, vtkPoints* pts) override;
71 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
72 int IsPrimaryCell() override { return 0; }
73
77 int GetParametricCenter(double pcoords[3]) override;
78
83 static void DecomposeStrip(int npts, const vtkIdType* pts, vtkCellArray* tris);
84
85protected:
88
91
92private:
93 vtkTriangleStrip(const vtkTriangleStrip&) = delete;
94 void operator=(const vtkTriangleStrip&) = delete;
95};
96
97VTK_ABI_NAMESPACE_END
98#endif
object to represent cell connectivity
represent and manipulate cell attribute data
Definition vtkCellData.h:40
abstract class to specify cell behavior
Definition vtkCell.h:59
vtkIdType GetNumberOfPoints() const
Return the number of points in the cell.
Definition vtkCell.h:139
abstract superclass for arrays of numeric data
list of point or cell ids
Definition vtkIdList.h:32
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:38
cell represents a 1D line
Definition vtkLine.h:32
represent and manipulate point attribute data
represent and manipulate 3D points
Definition vtkPoints.h:38
a cell that represents a triangle strip
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
Intersect with a ray.
void Contour(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *verts, vtkCellArray *lines, vtkCellArray *polys, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd) override
See the vtkCell API for descriptions of these methods.
int GetNumberOfFaces() override
See the vtkCell API for descriptions of these methods.
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
Determine global coordinate (x[3]) from subId and parametric coordinates.
int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts) override
Generate simplices of proper dimension.
vtkTriangle * Triangle
int GetCellDimension() override
See the vtkCell API for descriptions of these methods.
int CellBoundary(int subId, const double pcoords[3], vtkIdList *pts) override
See the vtkCell API for descriptions of these methods.
vtkCell * GetFace(int vtkNotUsed(faceId)) override
See the vtkCell API for descriptions of these methods.
~vtkTriangleStrip() override
vtkCell * GetEdge(int edgeId) override
See the vtkCell API for descriptions of these methods.
static vtkTriangleStrip * New()
int GetNumberOfEdges() override
See the vtkCell API for descriptions of these methods.
void Clip(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *polys, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, int insideOut) override
See the vtkCell API for descriptions of these methods.
int GetParametricCenter(double pcoords[3]) override
Return the center of the point cloud in parametric coordinates.
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
Compute derivatives given cell subId and parametric coordinates.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static void DecomposeStrip(int npts, const vtkIdType *pts, vtkCellArray *tris)
Given a triangle strip, decompose it into a list of (triangle) polygons.
int GetCellType() override
See the vtkCell API for descriptions of these methods.
int EvaluatePosition(const double x[3], double closestPoint[3], int &subId, double pcoords[3], double &dist2, double weights[]) override
Given a point x[3] return inside(=1), outside(=0) cell, or (-1) computational problem encountered; ev...
int IsPrimaryCell() override
Return whether this cell type has a fixed topology or whether the topology varies depending on the da...
a cell that represents a triangle
Definition vtkTriangle.h:37
@ VTK_TRIANGLE_STRIP
Definition vtkCellType.h:43
int vtkIdType
Definition vtkType.h:315