VTK  9.4.20241016
vtkSplitSharpEdgesPolyData.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
11#ifndef vtkSplitSharpEdgesPolyData_h
12#define vtkSplitSharpEdgesPolyData_h
13
14#include "vtkFiltersCoreModule.h" // For export macro
16
17VTK_ABI_NAMESPACE_BEGIN
18class VTKFILTERSCORE_EXPORT vtkSplitSharpEdgesPolyData : public vtkPolyDataAlgorithm
19{
20public:
23 void PrintSelf(ostream& os, vtkIndent indent) override;
24
26
33 vtkSetClampMacro(FeatureAngle, double, 0.0, 180.0);
34 vtkGetMacro(FeatureAngle, double);
36
38
45 vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION, DEFAULT_PRECISION);
46 vtkGetMacro(OutputPointsPrecision, int);
48
49protected:
52
54
55private:
57 void operator=(const vtkSplitSharpEdgesPolyData&) = delete;
58
59 struct MarkAndSplitFunctor;
60
61 double FeatureAngle;
62 int OutputPointsPrecision;
63};
64VTK_ABI_NAMESPACE_END
65
66#endif // vtkSplitSharpEdgesPolyData_h
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
Split sharp edges in a polygonal mesh.
~vtkSplitSharpEdgesPolyData() override
static vtkSplitSharpEdgesPolyData * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.