VTK  9.1.0
vtkContourTriangulator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkContourTriangulator.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=========================================================================*/
53#ifndef vtkContourTriangulator_h
54#define vtkContourTriangulator_h
55
56#include "vtkFiltersGeneralModule.h" // For export macro
58
59class vtkCellArray;
60class vtkIdList;
61
62class VTKFILTERSGENERAL_EXPORT vtkContourTriangulator : public vtkPolyDataAlgorithm
63{
64public:
67 void PrintSelf(ostream& os, vtkIndent indent) override;
68
70
73 vtkGetMacro(TriangulationError, int);
75
77
82 vtkSetMacro(TriangulationErrorDisplay, vtkTypeBool);
83 vtkBooleanMacro(TriangulationErrorDisplay, vtkTypeBool);
84 vtkGetMacro(TriangulationErrorDisplay, vtkTypeBool);
86
92 static int TriangulatePolygon(vtkIdList* polygon, vtkPoints* points, vtkCellArray* triangles);
93
100 static int TriangulateContours(vtkPolyData* data, vtkIdType firstLine, vtkIdType numLines,
101 vtkCellArray* outputPolys, const double normal[3]);
102
103protected:
106
108 vtkInformationVector* outputVector) override;
109
112
113private:
115 void operator=(const vtkContourTriangulator&) = delete;
116};
117
118#endif
object to represent cell connectivity
Definition: vtkCellArray.h:290
Fill all 2D contours to create polygons.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkContourTriangulator * New()
static int TriangulateContours(vtkPolyData *data, vtkIdType firstLine, vtkIdType numLines, vtkCellArray *outputPolys, const double normal[3])
Given some closed contour lines, create a triangle mesh that fills those lines.
static int TriangulatePolygon(vtkIdList *polygon, vtkPoints *points, vtkCellArray *triangles)
A robust method for triangulating a polygon.
~vtkContourTriangulator() override
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
list of point or cell ids
Definition: vtkIdList.h:140
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition: vtkPoints.h:143
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:195
@ points
Definition: vtkX3D.h:452
@ data
Definition: vtkX3D.h:321
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332