VTK  9.2.5
vtkFitImplicitFunction.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkFitImplicitFunction.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See LICENSE file 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 =========================================================================*/
74 #ifndef vtkFitImplicitFunction_h
75 #define vtkFitImplicitFunction_h
76 
77 #include "vtkFiltersPointsModule.h" // For export macro
78 #include "vtkPointCloudFilter.h"
79 
81 class vtkPointSet;
82 
83 class VTKFILTERSPOINTS_EXPORT vtkFitImplicitFunction : public vtkPointCloudFilter
84 {
85 public:
87 
93  void PrintSelf(ostream& os, vtkIndent indent) override;
95 
97 
102  vtkGetObjectMacro(ImplicitFunction, vtkImplicitFunction);
104 
106 
111  vtkSetClampMacro(Threshold, double, 0.0, VTK_FLOAT_MAX);
112  vtkGetMacro(Threshold, double);
114 
118  vtkMTimeType GetMTime() override;
119 
120 protected:
123 
125  double Threshold;
126 
127  // All derived classes must implement this method. Note that a side effect of
128  // the class is to populate the PointMap. Zero is returned if there is a failure.
129  int FilterPoints(vtkPointSet* input) override;
130 
131 private:
133  void operator=(const vtkFitImplicitFunction&) = delete;
134 };
135 
136 #endif
extract points on the surface of an implicit function
~vtkFitImplicitFunction() override
vtkImplicitFunction * ImplicitFunction
int FilterPoints(vtkPointSet *input) override
static vtkFitImplicitFunction * New()
Standard methods for instantiating, obtaining type information, and printing information.
virtual void SetImplicitFunction(vtkImplicitFunction *)
Specify the implicit function defining a surface on which points are to be extracted.
vtkMTimeType GetMTime() override
Return the MTime taking into account changes to the implicit function.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiating, obtaining type information, and printing information.
abstract interface for implicit functions
a simple class to control print indentation
Definition: vtkIndent.h:119
abstract class for filtering a point cloud
concrete class for storing a set of points
Definition: vtkPointSet.h:109
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287
#define VTK_FLOAT_MAX
Definition: vtkType.h:163