VTK  9.2.6
vtkDelaunay3D.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkDelaunay3D.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=========================================================================*/
109#ifndef vtkDelaunay3D_h
110#define vtkDelaunay3D_h
111
112#include "vtkFiltersCoreModule.h" // For export macro
114
115class vtkIdList;
116class vtkPointLocator;
117class vtkPointSet;
118class vtkPoints;
119class vtkTetraArray;
121
122class VTKFILTERSCORE_EXPORT vtkDelaunay3D : public vtkUnstructuredGridAlgorithm
123{
124public:
126 void PrintSelf(ostream& os, vtkIndent indent) override;
127
133
135
144 vtkSetClampMacro(Alpha, double, 0.0, VTK_DOUBLE_MAX);
145 vtkGetMacro(Alpha, double);
147
149
152 vtkSetMacro(AlphaTets, vtkTypeBool);
153 vtkGetMacro(AlphaTets, vtkTypeBool);
154 vtkBooleanMacro(AlphaTets, vtkTypeBool);
156
158
161 vtkSetMacro(AlphaTris, vtkTypeBool);
162 vtkGetMacro(AlphaTris, vtkTypeBool);
163 vtkBooleanMacro(AlphaTris, vtkTypeBool);
165
167
170 vtkSetMacro(AlphaLines, vtkTypeBool);
171 vtkGetMacro(AlphaLines, vtkTypeBool);
172 vtkBooleanMacro(AlphaLines, vtkTypeBool);
174
176
179 vtkSetMacro(AlphaVerts, vtkTypeBool);
180 vtkGetMacro(AlphaVerts, vtkTypeBool);
181 vtkBooleanMacro(AlphaVerts, vtkTypeBool);
183
185
190 vtkSetClampMacro(Tolerance, double, 0.0, 1.0);
191 vtkGetMacro(Tolerance, double);
193
195
199 vtkSetClampMacro(Offset, double, 2.5, VTK_DOUBLE_MAX);
200 vtkGetMacro(Offset, double);
202
204
210 vtkSetMacro(BoundingTriangulation, vtkTypeBool);
211 vtkGetMacro(BoundingTriangulation, vtkTypeBool);
212 vtkBooleanMacro(BoundingTriangulation, vtkTypeBool);
214
216
221 vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
223
229
243 double center[3], double length, vtkIdType numPts, vtkPoints*& points);
244
256 vtkUnstructuredGrid* Mesh, vtkPoints* points, vtkIdType id, double x[3], vtkIdList* holeTetras);
257
265
270
272
277 vtkSetMacro(OutputPointsPrecision, int);
278 vtkGetMacro(OutputPointsPrecision, int);
280
281protected:
283 ~vtkDelaunay3D() override;
284
286
287 double Alpha;
292 double Tolerance;
294 double Offset;
296
297 vtkIncrementalPointLocator* Locator; // help locate points faster
298
299 vtkTetraArray* TetraArray; // used to keep track of circumspheres/neighbors
300 int FindTetra(vtkUnstructuredGrid* Mesh, double x[3], vtkIdType tetraId, int depth);
301 int InSphere(double x[3], vtkIdType tetraId);
302 void InsertTetra(vtkUnstructuredGrid* Mesh, vtkPoints* points, vtkIdType tetraId);
303
304 int NumberOfDuplicatePoints; // keep track of bad data
306
307 // Keep track of number of references to points to avoid new/delete calls
309
311 vtkIdList* faces, vtkIncrementalPointLocator* Locator);
312
314
315private: // members added for performance
316 vtkIdList* Tetras; // used in InsertPoint
317 vtkIdList* Faces; // used in InsertPoint
318 vtkIdList* CheckedTetras; // used by InsertPoint
319
320private:
321 vtkDelaunay3D(const vtkDelaunay3D&) = delete;
322 void operator=(const vtkDelaunay3D&) = delete;
323};
324
325#endif
create 3D Delaunay triangulation of input points
void CreateDefaultLocator()
Create default locator.
vtkUnstructuredGrid * InitPointInsertion(double center[3], double length, vtkIdType numPts, vtkPoints *&points)
This is a helper method used with InsertPoint() to create tetrahedronalizations of points.
~vtkDelaunay3D() override
int InSphere(double x[3], vtkIdType tetraId)
vtkMTimeType GetMTime() override
Return the MTime also considering the locator.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkDelaunay3D * New()
Construct object with Alpha = 0.0; Tolerance = 0.001; Offset = 2.5; BoundingTriangulation turned off.
vtkIdType FindEnclosingFaces(double x[3], vtkUnstructuredGrid *Mesh, vtkIdList *tetras, vtkIdList *faces, vtkIncrementalPointLocator *Locator)
vtkTetraArray * TetraArray
void InsertTetra(vtkUnstructuredGrid *Mesh, vtkPoints *points, vtkIdType tetraId)
void EndPointInsertion()
Invoke this method after all points have been inserted.
vtkTypeBool AlphaTets
int NumberOfDuplicatePoints
vtkIncrementalPointLocator * Locator
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
void SetLocator(vtkIncrementalPointLocator *locator)
Set / get a spatial locator for merging points.
vtkTypeBool BoundingTriangulation
vtkTypeBool AlphaTris
void InsertPoint(vtkUnstructuredGrid *Mesh, vtkPoints *points, vtkIdType id, double x[3], vtkIdList *holeTetras)
This is a helper method used with InitPointInsertion() to create tetrahedronalizations of points.
vtkTypeBool AlphaLines
vtkTypeBool AlphaVerts
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FindTetra(vtkUnstructuredGrid *Mesh, double x[3], vtkIdType tetraId, int depth)
list of point or cell ids
Definition vtkIdList.h:43
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
quickly locate points in 3-space
concrete class for storing a set of points
Definition vtkPointSet.h:79
represent and manipulate 3D points
Definition vtkPoints.h:49
Superclass for algorithms that produce only unstructured grid as output.
dataset represents arbitrary combinations of all possible cell types
int vtkTypeBool
Definition vtkABI.h:69
int vtkIdType
Definition vtkType.h:332
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287
#define VTK_DOUBLE_MAX
Definition vtkType.h:165