VTK  9.1.0
vtkTriangleStrip.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTriangleStrip.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 =========================================================================*/
76 #ifndef vtkTriangleStrip_h
77 #define vtkTriangleStrip_h
78 
79 #include "vtkCell.h"
80 #include "vtkCommonDataModelModule.h" // For export macro
81 
82 class vtkLine;
83 class vtkTriangle;
85 
86 class VTKCOMMONDATAMODEL_EXPORT vtkTriangleStrip : public vtkCell
87 {
88 public:
89  static vtkTriangleStrip* New();
90  vtkTypeMacro(vtkTriangleStrip, vtkCell);
91  void PrintSelf(ostream& os, vtkIndent indent) override;
92 
94 
97  int GetCellType() override { return VTK_TRIANGLE_STRIP; }
98  int GetCellDimension() override { return 2; }
99  int GetNumberOfEdges() override { return this->GetNumberOfPoints(); }
100  int GetNumberOfFaces() override { return 0; }
101  vtkCell* GetEdge(int edgeId) override;
102  vtkCell* GetFace(int vtkNotUsed(faceId)) override { return nullptr; }
103  int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
104  void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
105  vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
106  vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
107  void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
108  vtkCellArray* polys, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
109  vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
111 
112  int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
113  double& dist2, double weights[]) override;
114  void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
115  int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
116  double pcoords[3], int& subId) override;
117  int Triangulate(int index, vtkIdList* ptIds, vtkPoints* pts) override;
119  int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
120  int IsPrimaryCell() override { return 0; }
121 
125  int GetParametricCenter(double pcoords[3]) override;
126 
131  static void DecomposeStrip(int npts, const vtkIdType* pts, vtkCellArray* tris);
132 
133 protected:
135  ~vtkTriangleStrip() override;
136 
139 
140 private:
141  vtkTriangleStrip(const vtkTriangleStrip&) = delete;
142  void operator=(const vtkTriangleStrip&) = delete;
143 };
144 
145 #endif
object to represent cell connectivity
Definition: vtkCellArray.h:290
represent and manipulate cell attribute data
Definition: vtkCellData.h:142
abstract class to specify cell behavior
Definition: vtkCell.h:147
vtkIdType GetNumberOfPoints() const
Return the number of points in the cell.
Definition: vtkCell.h:227
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:159
list of point or cell ids
Definition: vtkIdList.h:140
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition: vtkIndent.h:113
cell represents a 1D line
Definition: vtkLine.h:140
represent and manipulate point attribute data
Definition: vtkPointData.h:142
represent and manipulate 3D points
Definition: vtkPoints.h:143
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.
static vtkTriangleStrip * New()
int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts) override
Generate simplices of proper dimension.
vtkCell * GetEdge(int edgeId) override
See the vtkCell API for descriptions of these methods.
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.
~vtkTriangleStrip() override
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.
vtkCell * GetFace(int vtkNotUsed(faceId)) override
See the vtkCell API for descriptions of these methods.
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:145
@ value
Definition: vtkX3D.h:226
@ index
Definition: vtkX3D.h:252
@ VTK_TRIANGLE_STRIP
Definition: vtkCellType.h:91
int vtkIdType
Definition: vtkType.h:332