VTK  9.3.20240422
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
47
48VTK_ABI_NAMESPACE_BEGIN
50
51class VTKFILTERSPOINTS_EXPORT vtkPCACurvatureEstimation : public vtkPolyDataAlgorithm
52{
53public:
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
82 vtkGetObjectMacro(Locator, vtkAbstractPointLocator);
84
85protected:
88
89 // IVars
92
94 int FillInputPortInformation(int port, vtkInformation* info) override;
95
96private:
98 void operator=(const vtkPCACurvatureEstimation&) = delete;
99};
100
101VTK_ABI_NAMESPACE_END
102#endif
abstract class to quickly locate points in 3-space
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
generate curvature estimates using principal component analysis
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void SetLocator(vtkAbstractPointLocator *locator)
Specify a point locator.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiating, obtaining type information, and printing information.
static vtkPCACurvatureEstimation * New()
Standard methods for instantiating, obtaining type information, and printing information.
~vtkPCACurvatureEstimation() override
vtkAbstractPointLocator * Locator
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Superclass for algorithms that produce only polydata as output.
#define VTK_INT_MAX
Definition vtkType.h:144