VTK
vtkImplicitPolyDataDistance.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImplicitPolyDataDistance.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 =========================================================================*/
39 #ifndef vtkImplicitPolyDataDistance_h
40 #define vtkImplicitPolyDataDistance_h
41 
42 #include "vtkFiltersCoreModule.h" // For export macro
43 #include "vtkImplicitFunction.h"
44 
45 class vtkCellLocator;
46 class vtkPolyData;
47 
48 class VTKFILTERSCORE_EXPORT vtkImplicitPolyDataDistance : public vtkImplicitFunction
49 {
50 public:
53  void PrintSelf(ostream& os, vtkIndent indent) override;
54 
58  vtkMTimeType GetMTime() override;
59 
64  double EvaluateFunction(double x[3]) override;
65 
69  void EvaluateGradient(double x[3], double g[3]) override;
70 
74  double EvaluateFunctionAndGetClosestPoint (double x[3], double closestPoint[3]);
75 
82  void SetInput(vtkPolyData *input);
83 
85 
89  vtkSetMacro(NoValue, double);
90  vtkGetMacro(NoValue, double);
92 
94 
98  vtkSetVector3Macro(NoGradient, double);
99  vtkGetVector3Macro(NoGradient, double);
101 
103 
107  vtkSetVector3Macro(NoClosestPoint, double);
108  vtkGetVector3Macro(NoClosestPoint, double);
110 
112 
115  vtkGetMacro(Tolerance, double);
116  vtkSetMacro(Tolerance, double);
118 
119 protected:
121  ~vtkImplicitPolyDataDistance() override;
122 
126  void CreateDefaultLocator(void);
127 
128  double SharedEvaluate(double x[3], double g[3], double p[3]);
129 
130  double NoGradient[3];
131  double NoClosestPoint[3];
132  double NoValue;
133  double Tolerance;
134 
137 
138 private:
140  void operator=(const vtkImplicitPolyDataDistance&) = delete;
141 };
142 
143 #endif
vtkCellLocator
octree-based spatial search object to quickly locate cells
Definition: vtkCellLocator.h:46
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkImplicitPolyDataDistance::Locator
vtkCellLocator * Locator
Definition: vtkImplicitPolyDataDistance.h:136
vtkImplicitFunction::EvaluateFunction
virtual double EvaluateFunction(double x[3])=0
Evaluate function at position x-y-z and return value.
vtkImplicitPolyDataDistance::Input
vtkPolyData * Input
Definition: vtkImplicitPolyDataDistance.h:135
vtkImplicitFunction
abstract interface for implicit functions
Definition: vtkImplicitFunction.h:60
vtkImplicitFunction::GetMTime
vtkMTimeType GetMTime() override
Overload standard modified time function.
vtkImplicitPolyDataDistance::NoValue
double NoValue
Definition: vtkImplicitPolyDataDistance.h:132
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkImplicitFunction::EvaluateGradient
virtual void EvaluateGradient(double x[3], double g[3])=0
Evaluate function gradient at position x-y-z and pass back vector.
vtkImplicitPolyDataDistance
Definition: vtkImplicitPolyDataDistance.h:48
vtkImplicitPolyDataDistance::Tolerance
double Tolerance
Definition: vtkImplicitPolyDataDistance.h:133
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:79
vtkImplicitFunction.h
vtkImplicitFunction::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMTimeType
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:302