VTK  9.7.20260709
vtkPolygon.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
116
117#ifndef vtkPolygon_h
118#define vtkPolygon_h
119
120#include "vtkCell.h"
121#include "vtkCellStatus.h" // For return type
122#include "vtkCommonDataModelModule.h" // For export macro
123
124#include <cmath> // For std::sqrt in the quality ear clip
125#include <utility> // For std::swap in the quality ear clip
126#include <vector> // For ear-clip scratch buffers
127
128VTK_ABI_NAMESPACE_BEGIN
129class vtkDoubleArray;
130class vtkIdTypeArray;
131class vtkLine;
132class vtkPoints;
133class vtkQuad;
134class vtkTriangle;
135class vtkPriorityQueue;
137
138class VTKCOMMONDATAMODEL_EXPORT vtkPolygon : public vtkCell
139{
140public:
141 static vtkPolygon* New();
142 vtkTypeMacro(vtkPolygon, vtkCell);
143 void PrintSelf(ostream& os, vtkIndent indent) override;
144
146
149 int GetCellType() override { return VTK_POLYGON; }
150 int GetCellDimension() override { return 2; }
151 int GetNumberOfEdges() override { return this->GetNumberOfPoints(); }
152 int GetNumberOfFaces() override { return 0; }
153 vtkCell* GetEdge(int edgeId) override;
154 vtkCell* GetFace(int) override { return nullptr; }
155 int CellBoundary(int subId, const double pcoords[3], vtkIdList* pts) override;
156 void Contour(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
157 vtkCellArray* verts, vtkCellArray* lines, vtkCellArray* polys, vtkPointData* inPd,
158 vtkPointData* outPd, vtkCellData* inCd, vtkIdType cellId, vtkCellData* outCd) override;
159 void Clip(double value, vtkDataArray* cellScalars, vtkIncrementalPointLocator* locator,
160 vtkCellArray* tris, vtkPointData* inPd, vtkPointData* outPd, vtkCellData* inCd,
161 vtkIdType cellId, vtkCellData* outCd, int insideOut) override;
162 int EvaluatePosition(const double x[3], double closestPoint[3], int& subId, double pcoords[3],
163 double& dist2, double weights[]) override;
164 void EvaluateLocation(int& subId, const double pcoords[3], double x[3], double* weights) override;
165 int IntersectWithLine(const double p1[3], const double p2[3], double tol, double& t, double x[3],
166 double pcoords[3], int& subId) override;
167 int TriangulateLocalIds(int index, vtkIdList* ptIds) override;
169 int subId, const double pcoords[3], const double* values, int dim, double* derivs) override;
170 int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; }
172
179 double ComputeArea();
180
190 void InterpolateFunctions(const double x[3], double* sf) override;
191
193
197 static vtkCellStatus ComputeNormal(vtkPoints* p, int numPts, const vtkIdType* pts, double n[3]);
198 static vtkCellStatus ComputeNormal(vtkPoints* p, double n[3]);
199 static vtkCellStatus ComputeNormal(vtkIdTypeArray* ids, vtkPoints* pts, double n[3]);
201
206 static vtkCellStatus ComputeNormal(int numPts, double* pts, double n[3]);
207
214 bool IsConvex();
215
217
229 static bool IsConvex(vtkPoints* p, int numPts, const vtkIdType* pts);
230 static bool IsConvex(vtkIdTypeArray* ids, vtkPoints* p);
231 static bool IsConvex(vtkPoints* p);
233
235
260 vtkPoints* p, int numPts, const vtkIdType* pts, double centroid[3], double tolerance);
261 static bool ComputeCentroid(vtkPoints* p, int numPts, const vtkIdType* pts, double centroid[3]);
262 static bool ComputeCentroid(vtkIdTypeArray* ids, vtkPoints* pts, double centroid[3]);
264
273 vtkPoints* p, int numPts, const vtkIdType* ids, double center[3], double& radius2);
274
283 static double ComputeArea(vtkPoints* p, vtkIdType numPts, const vtkIdType* pts, double normal[3]);
284
292 static double ComputeArea(int numPts, double* pts, double normal[3]);
293
302 double p0[3], double p10[3], double& l10, double p20[3], double& l20, double n[3]);
303
315 static int PointInPolygon(double x[3], int numPts, double* pts, double bounds[6], double n[3]);
316
317 // Needed to remove warning "member function does not override any
318 // base class virtual member function"
319 int Triangulate(int index, vtkIdList* ptIds, vtkPoints* pts) override
320 {
321 return vtkCell::Triangulate(index, ptIds, pts);
322 }
323
329
337 int BoundedTriangulate(vtkIdList* outTris, double tol);
338
344 static double DistanceToPolygon(
345 double x[3], int numPts, double* pts, double bounds[6], double closest[3]);
346
355 static int IntersectPolygonWithPolygon(int npts, double* pts, double bounds[6], int npts2,
356 double* pts2, double bounds2[6], double tol, double x[3]);
357
370 vtkCell* cell1, vtkCell* cell2, double tol, double p0[3], double p1[3]);
371
373
379 vtkGetMacro(UseMVCInterpolation, bool);
380 vtkSetMacro(UseMVCInterpolation, bool);
382
384
392 vtkSetClampMacro(Tolerance, double, 0.0, 1.0);
393 vtkGetMacro(Tolerance, double);
395
396protected:
398 ~vtkPolygon() override = default;
399
400 // Compute the interpolation functions using Mean Value Coordinate.
401 void InterpolateFunctionsUsingMVC(const double x[3], double* weights);
402
403 // variables used by instances of this class
404 double Tolerance; // Intersection tolerance set by public API
405 double Tol; // Internal tolerance set by ComputeBounds()
406 void ComputeTolerance(); // Compute the internal tolerance Tol
407
408 int SuccessfulTriangulation; // Stops recursive triangulation if necessary
409 vtkSmartPointer<vtkIdList> Tris; // Output triangulation placed here
410
411 // These are used for internal computation.
416 vtkSmartPointer<vtkPriorityQueue> EarClipQueue; // reused ear-clip removal queue
417
418 // Parameter indicating whether to use Mean Value Coordinate algorithm
419 // for interpolation. The parameter is false by default.
421
422 // Helper methods for triangulation------------------------------
423 // Made public for external access
424public:
425 // Ear cut triangulation options. The order in which vertices are
426 // removed are controlled by different measures. Changing this can
427 // make subtle differences in some cases. Historically the
428 // PERIMETER2_TO_AREA_RATIO has been used.
435
437
448
450
459 int seed, vtkIdList* outTris, int measure = PERIMETER2_TO_AREA_RATIO);
461
463
490 template <typename PointsRange, typename CellIter>
491 static int CompactPolygonRing(
492 const PointsRange& points, CellIter cell, int cellSize, std::vector<int>& ring);
493 template <typename PointsRange, typename CellIter>
495 const PointsRange& points, CellIter cell, int cellSize, std::vector<int>& ring);
496 template <typename PointsRange, typename CellIter, typename EmitFn>
497 static void EarClipPolygon3D(const PointsRange& points, CellIter cell, int cellSize,
498 std::vector<int>& prevBuf, std::vector<int>& nextBuf, std::vector<int>& ring, EmitFn&& emit);
500
501private:
502 vtkPolygon(const vtkPolygon&) = delete;
503 void operator=(const vtkPolygon&) = delete;
504};
505
506//------------------------------------------------------------------------------
507template <typename PointsRange, typename CellIter>
509 const PointsRange& points, CellIter cell, int cellSize, std::vector<int>& ring)
510{
511 // Build the ring of distinct vertices, dropping consecutive coincident
512 // vertices (degenerate edges). Banded contouring and clipping routinely emit
513 // polygons with coincident consecutive vertices when a scalar lands exactly
514 // on a clip value; the historical fan triangulation tolerated these by
515 // skipping zero-area triangles, and the ear clip must do the same or it
516 // computes a bogus normal / ear test at the duplicated vertex.
517 ring.clear();
518 for (int i = 0; i < cellSize; ++i)
519 {
520 if (!ring.empty())
521 {
522 auto pPrev = points[cell[ring.back()]];
523 auto pCur = points[cell[i]];
524 if (pPrev[0] == pCur[0] && pPrev[1] == pCur[1] && pPrev[2] == pCur[2])
525 {
526 continue; // coincident with previous kept vertex
527 }
528 }
529 ring.push_back(i);
530 }
531 // Drop the last vertex if it coincides with the first (wrap-around duplicate).
532 if (ring.size() >= 2)
533 {
534 auto pFirst = points[cell[ring.front()]];
535 auto pLast = points[cell[ring.back()]];
536 if (pFirst[0] == pLast[0] && pFirst[1] == pLast[1] && pFirst[2] == pLast[2])
537 {
538 ring.pop_back();
539 }
540 }
541 return static_cast<int>(ring.size());
542}
543
544//------------------------------------------------------------------------------
545template <typename PointsRange, typename CellIter>
547 const PointsRange& points, CellIter cell, int cellSize, std::vector<int>& ring)
548{
549 const int m = vtkPolygon::CompactPolygonRing(points, cell, cellSize, ring);
550 return m >= 3 ? static_cast<vtkIdType>(m - 2) : 0;
551}
552
553//------------------------------------------------------------------------------
554template <typename PointsRange, typename CellIter, typename EmitFn>
555void vtkPolygon::EarClipPolygon3D(const PointsRange& points, CellIter cell, int cellSize,
556 std::vector<int>& prevBuf, std::vector<int>& nextBuf, std::vector<int>& ring, EmitFn&& emit)
557{
558 const int m = vtkPolygon::CompactPolygonRing(points, cell, cellSize, ring);
559 if (m < 3)
560 {
561 return; // fully degenerate (collapses to a point or segment): no triangles
562 }
563
564 // ring[k] is the polygon-local index of the k-th distinct vertex. Work in
565 // compacted space 0..m-1; map back through ring[] when emitting and looking
566 // up coordinates.
567 auto P = [&](int k) { return points[cell[ring[k]]]; };
568
569 // Compute polygon normal via Newell's method over the compacted ring.
570 double normal[3] = { 0.0, 0.0, 0.0 };
571 {
572 auto pLast = P(m - 1);
573 double xp = pLast[0], yp = pLast[1], zp = pLast[2];
574 for (int i = 0; i < m; ++i)
575 {
576 auto pi = P(i);
577 double x = pi[0], y = pi[1], z = pi[2];
578 normal[0] += (yp - y) * (zp + z);
579 normal[1] += (zp - z) * (xp + x);
580 normal[2] += (xp - x) * (yp + y);
581 xp = x;
582 yp = y;
583 zp = z;
584 }
585 }
586
587 // Emit a triangle given compacted-ring indices, computing the polygon-
588 // boundary edge mask from compacted-ring adjacency, then mapping to local.
589 auto emitRing = [&](int a, int b, int c)
590 {
591 auto isBoundary = [m](int x, int y) -> int
592 {
593 const int d = (y - x + m) % m;
594 return (d == 1 || d == m - 1) ? 1 : 0;
595 };
596 int mask = isBoundary(a, b);
597 mask |= isBoundary(b, c) << 1;
598 mask |= isBoundary(c, a) << 2;
599 emit(ring[a], ring[b], ring[c], mask);
600 };
601
602 const double normLen2 = normal[0] * normal[0] + normal[1] * normal[1] + normal[2] * normal[2];
603 if (normLen2 == 0.0)
604 {
605 // Zero-area (collinear) polygon. No meaningful triangulation; fall back to
606 // a fan over the compacted ring so the emit count matches m - 2.
607 for (int i = 1; i < m - 1; ++i)
608 {
609 emitRing(0, i, i + 1);
610 }
611 return;
612 }
613
614 // Doubly-linked circular list over the compacted ring 0..m-1.
615 prevBuf.resize(m);
616 nextBuf.resize(m);
617 for (int i = 0; i < m; ++i)
618 {
619 prevBuf[i] = (i + m - 1) % m;
620 nextBuf[i] = (i + 1) % m;
621 }
622
623 auto isEar = [&](int b) -> bool
624 {
625 const int a = prevBuf[b];
626 const int c = nextBuf[b];
627 auto pa = P(a);
628 auto pb = P(b);
629 auto pc = P(c);
630 const double ax = pa[0], ay = pa[1], az = pa[2];
631 const double bx = pb[0], by = pb[1], bz = pb[2];
632 const double cx = pc[0], cy = pc[1], cz = pc[2];
633
634 // Convexity at b: ((b - a) x (c - b)) . normal > 0
635 const double e1x = bx - ax, e1y = by - ay, e1z = bz - az;
636 const double e2x = cx - bx, e2y = cy - by, e2z = cz - bz;
637 const double crx = e1y * e2z - e1z * e2y;
638 const double cry = e1z * e2x - e1x * e2z;
639 const double crz = e1x * e2y - e1y * e2x;
640 if (crx * normal[0] + cry * normal[1] + crz * normal[2] <= 0.0)
641 {
642 return false; // reflex or zero-area
643 }
644
645 // No other vertex in the remaining polygon may lie strictly inside
646 // triangle (a, b, c). Use the polygon normal as the projection axis for
647 // a same-side test against each triangle edge.
648 for (int q = nextBuf[c]; q != a; q = nextBuf[q])
649 {
650 auto pq = P(q);
651 const double qx = pq[0], qy = pq[1], qz = pq[2];
652 auto sideOf = [&](double sx, double sy, double sz, double ex, double ey, double ez) -> double
653 {
654 const double dx = ex - sx, dy = ey - sy, dz = ez - sz;
655 const double rx = qx - sx, ry = qy - sy, rz = qz - sz;
656 const double tcrx = dy * rz - dz * ry;
657 const double tcry = dz * rx - dx * rz;
658 const double tcrz = dx * ry - dy * rx;
659 return tcrx * normal[0] + tcry * normal[1] + tcrz * normal[2];
660 };
661 const double s1 = sideOf(ax, ay, az, bx, by, bz);
662 const double s2 = sideOf(bx, by, bz, cx, cy, cz);
663 const double s3 = sideOf(cx, cy, cz, ax, ay, az);
664 if (s1 > 0.0 && s2 > 0.0 && s3 > 0.0)
665 {
666 return false;
667 }
668 }
669 return true;
670 };
671
672 // Clip ears walking forward from vertex 1, keeping the clipped vertex's
673 // successor as the next candidate. For a convex polygon this clips vertices
674 // 1, 2, 3, ... in order while vertex 0 remains the common apex, reproducing
675 // exactly the fan-from-vertex-0 triangulation VTK has always emitted (and
676 // that existing image baselines were generated with). Triangulation is not
677 // invariant under interior diagonals: per-triangle texture-coordinate and
678 // Gouraud interpolation depend on the diagonals chosen, so a convex polygon
679 // must keep producing the fan. For non-convex polygons reflex vertices are
680 // skipped and the walk still finds valid ears.
681 int remaining = m;
682 int current = 1 % m;
683 int safetyBudget = 2 * m;
684 while (remaining > 3 && safetyBudget > 0)
685 {
686 if (isEar(current))
687 {
688 const int a = prevBuf[current];
689 const int c = nextBuf[current];
690 emitRing(a, current, c);
691 nextBuf[a] = c;
692 prevBuf[c] = a;
693 current = c;
694 --remaining;
695 safetyBudget = 2 * m;
696 }
697 else
698 {
699 current = nextBuf[current];
700 --safetyBudget;
701 }
702 }
703
704 if (remaining > 3)
705 {
706 // Ear-clip stalled. Emit remaining vertices as a fan from `current` to
707 // satisfy the emit-pass triangle count. Result will be visually wrong for
708 // a non-convex remainder, but degenerate input has no correct triangulation.
709 const int head = current;
710 int v = nextBuf[head];
711 int vn = nextBuf[v];
712 while (vn != head)
713 {
714 emitRing(head, v, vn);
715 v = vn;
716 vn = nextBuf[vn];
717 }
718 return;
719 }
720
721 // Final triangle: the three vertices still in the list. Emit it anchored at
722 // prev(current) so that for a convex polygon (where current has advanced to
723 // the second-to-last vertex with vertex 0 still the apex) the triangle is
724 // (0, m-2, m-1) - the same vertex order and boundary-edge mask the fan emits.
725 const int b = current;
726 const int a = prevBuf[b];
727 const int c = nextBuf[b];
728 emitRing(a, b, c);
729}
730
731VTK_ABI_NAMESPACE_END
732#endif
RealT s2
Definition PyrC2Basis.h:21
object to represent cell connectivity
represent and manipulate cell attribute data
virtual int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts)
Generate simplices of proper dimension.
vtkIdType GetNumberOfPoints() const
Return the number of points in the cell.
Definition vtkCell.h:208
dynamic, self-adjusting array of double
list of point or cell ids
Definition vtkIdList.h:135
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:108
cell represents a 1D line
Definition vtkLine.h:132
represent and manipulate point attribute data
represent and manipulate 3D points
Definition vtkPoints.h:140
static int PointInPolygon(double x[3], int numPts, double *pts, double bounds[6], double n[3])
Determine whether a point is inside the specified polygon.
double ComputeArea()
Compute the area of a polygon.
@ PERIMETER2_TO_AREA_RATIO
Definition vtkPolygon.h:431
int GetCellType() override
See the vtkCell API for descriptions of these methods.
Definition vtkPolygon.h:149
void Clip(double value, vtkDataArray *cellScalars, vtkIncrementalPointLocator *locator, vtkCellArray *tris, vtkPointData *inPd, vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, int insideOut) override
See the vtkCell API for descriptions of these methods.
static vtkIdType EarClipTriangleCount(const PointsRange &points, CellIter cell, int cellSize, std::vector< int > &ring)
Templated, allocation-free ear-clip triangulation of a simple (possibly non-convex) 3D polygon,...
Definition vtkPolygon.h:546
static bool IsConvex(vtkPoints *p, int numPts, const vtkIdType *pts)
Determine whether or not a polygon is convex.
int CellBoundary(int subId, const double pcoords[3], vtkIdList *pts) override
See the vtkCell API for descriptions of these methods.
int UnbiasedEarCutTriangulation(int seed, int measure=PERIMETER2_TO_AREA_RATIO)
A fast triangulation method.
static int IntersectPolygonWithPolygon(int npts, double *pts, double bounds[6], int npts2, double *pts2, double bounds2[6], double tol, double x[3])
Method intersects two polygons.
int GetNumberOfEdges() override
See the vtkCell API for descriptions of these methods.
Definition vtkPolygon.h:151
static bool IsConvex(vtkPoints *p)
Determine whether or not a polygon is convex.
int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts) override
Generate simplices of proper dimension.
Definition vtkPolygon.h:319
void ComputeTolerance()
bool UseMVCInterpolation
Definition vtkPolygon.h:420
double Tolerance
Definition vtkPolygon.h:404
void InterpolateFunctionsUsingMVC(const double x[3], double *weights)
static vtkCellStatus ComputeNormal(vtkPoints *p, double n[3])
Computes the unit normal to the polygon.
static int CompactPolygonRing(const PointsRange &points, CellIter cell, int cellSize, std::vector< int > &ring)
Templated, allocation-free ear-clip triangulation of a simple (possibly non-convex) 3D polygon,...
Definition vtkPolygon.h:508
int IsPrimaryCell() VTK_FUTURE_CONST override
See the vtkCell API for descriptions of these methods.
Definition vtkPolygon.h:170
int GetNumberOfFaces() override
See the vtkCell API for descriptions of these methods.
Definition vtkPolygon.h:152
int EvaluatePosition(const double x[3], double closestPoint[3], int &subId, double pcoords[3], double &dist2, double weights[]) override
See the vtkCell API for descriptions of these methods.
vtkSmartPointer< vtkIdList > Tris
Definition vtkPolygon.h:409
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int NonDegenerateTriangulate(vtkIdList *outTris)
Same as Triangulate(vtkIdList *outTris) but with a first pass to split the polygon into non-degenerat...
int GetCellDimension() override
See the vtkCell API for descriptions of these methods.
Definition vtkPolygon.h:150
static double DistanceToPolygon(double x[3], int numPts, double *pts, double bounds[6], double closest[3])
Compute the distance of a point to a polygon.
int SuccessfulTriangulation
Definition vtkPolygon.h:408
vtkCell * GetEdge(int edgeId) override
See the vtkCell API for descriptions of these methods.
~vtkPolygon() override=default
vtkSmartPointer< vtkTriangle > Triangle
Definition vtkPolygon.h:412
void EvaluateLocation(int &subId, const double pcoords[3], double x[3], double *weights) override
See the vtkCell API for descriptions of these methods.
vtkSmartPointer< vtkLine > Line
Definition vtkPolygon.h:415
int TriangulateLocalIds(int index, vtkIdList *ptIds) override
See the vtkCell API for descriptions of these methods.
void Derivatives(int subId, const double pcoords[3], const double *values, int dim, double *derivs) override
See the vtkCell API for descriptions of these methods.
static vtkCellStatus ComputeNormal(vtkPoints *p, int numPts, const vtkIdType *pts, double n[3])
Computes the unit normal to the polygon.
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.
static bool IsConvex(vtkIdTypeArray *ids, vtkPoints *p)
Determine whether or not a polygon is convex.
static double ComputeArea(int numPts, double *pts, double normal[3])
Compute the area of a polygon from a flat array of 3D point coordinates (packed as x0,...
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
See the vtkCell API for descriptions of these methods.
int ParameterizePolygon(double p0[3], double p10[3], double &l10, double p20[3], double &l20, double n[3])
Create a local s-t coordinate system for a polygon.
vtkSmartPointer< vtkDoubleArray > TriScalars
Definition vtkPolygon.h:414
int EarCutTriangulation(vtkIdList *outTris, int measure=PERIMETER2_TO_AREA_RATIO)
A fast triangulation method.
static void EarClipPolygon3D(const PointsRange &points, CellIter cell, int cellSize, std::vector< int > &prevBuf, std::vector< int > &nextBuf, std::vector< int > &ring, EmitFn &&emit)
Templated, allocation-free ear-clip triangulation of a simple (possibly non-convex) 3D polygon,...
Definition vtkPolygon.h:555
vtkSmartPointer< vtkQuad > Quad
Definition vtkPolygon.h:413
static vtkCellStatus ComputeNormal(vtkIdTypeArray *ids, vtkPoints *pts, double n[3])
Computes the unit normal to the polygon.
int BoundedTriangulate(vtkIdList *outTris, double tol)
Triangulate polygon and enforce that the ratio of the smallest triangle area to the polygon area is g...
int EarCutTriangulation(int measure=PERIMETER2_TO_AREA_RATIO)
A fast triangulation method.
vtkCell * GetFace(int) override
See the vtkCell API for descriptions of these methods.
Definition vtkPolygon.h:154
static bool ComputeCentroid(vtkPoints *p, int numPts, const vtkIdType *pts, double centroid[3])
Compute the centroid of a set of points.
static double ComputeArea(vtkPoints *p, vtkIdType numPts, const vtkIdType *pts, double normal[3])
Compute the area of a polygon in 3D.
void InterpolateFunctions(const double x[3], double *sf) override
Compute the interpolation functions/derivatives.
bool IsConvex()
Determine whether or not a polygon is convex.
static bool ComputeCentroid(vtkIdTypeArray *ids, vtkPoints *pts, double centroid[3])
Compute the centroid of a set of points.
static vtkCellStatus ComputeNormal(int numPts, double *pts, double n[3])
Compute the polygon normal from an array of points.
int UnbiasedEarCutTriangulation(int seed, vtkIdList *outTris, int measure=PERIMETER2_TO_AREA_RATIO)
A fast triangulation method.
static vtkPolygon * New()
static bool ComputeInteriorCircle(vtkPoints *p, int numPts, const vtkIdType *ids, double center[3], double &radius2)
Compute a circle interior to a polygon.
double Tol
Definition vtkPolygon.h:405
static vtkCellStatus ComputeCentroid(vtkPoints *p, int numPts, const vtkIdType *pts, double centroid[3], double tolerance)
Compute the centroid of a set of points.
vtkSmartPointer< vtkPriorityQueue > EarClipQueue
Definition vtkPolygon.h:416
static int IntersectConvex2DCells(vtkCell *cell1, vtkCell *cell2, double tol, double p0[3], double p1[3])
Intersect two convex 2D polygons to produce a line segment as output.
a list of ids arranged in priority order
a cell that represents a 2D quadrilateral
Definition vtkQuad.h:87
Hold a reference to a vtkObjectBase instance.
a cell that represents a triangle
vtkCellStatus
Diagnostic values indicating how well-specified a cell is.
@ VTK_POLYGON
Definition vtkCellType.h:44
#define vtkDataArray
int vtkIdType
Definition vtkType.h:363