VTK  9.3.1
vtkPCACurvatureEstimation.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
42 #ifndef vtkPCACurvatureEstimation_h
43 #define vtkPCACurvatureEstimation_h
44 
45 #include "vtkFiltersPointsModule.h" // For export macro
46 #include "vtkPolyDataAlgorithm.h"
47 
48 VTK_ABI_NAMESPACE_BEGIN
50 
51 class VTKFILTERSPOINTS_EXPORT vtkPCACurvatureEstimation : public vtkPolyDataAlgorithm
52 {
53 public:
55 
61  void PrintSelf(ostream& os, vtkIndent indent) override;
63 
65 
71  vtkSetClampMacro(SampleSize, int, 1, VTK_INT_MAX);
72  vtkGetMacro(SampleSize, int);
74 
76 
81  void SetLocator(vtkAbstractPointLocator* locator);
82  vtkGetObjectMacro(Locator, vtkAbstractPointLocator);
84 
85 protected:
87  ~vtkPCACurvatureEstimation() override;
88 
89  // IVars
92 
95 
96 private:
98  void operator=(const vtkPCACurvatureEstimation&) = delete;
99 };
100 
101 VTK_ABI_NAMESPACE_END
102 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
#define VTK_INT_MAX
Definition: vtkType.h:144
vtkAbstractPointLocator * Locator
generate curvature estimates using principal component analysis
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:28
abstract class to quickly locate points in 3-space
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.