VTK  9.5.20250910
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#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
17
18VTK_ABI_NAMESPACE_BEGIN
20{
21public:
24 void PrintSelf(ostream& os, vtkIndent indent) override;
25
27
34 vtkSetClampMacro(FeatureAngle, double, 0.0, 180.0);
35 vtkGetMacro(FeatureAngle, double);
37
39
46 vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION, DEFAULT_PRECISION);
47 vtkGetMacro(OutputPointsPrecision, int);
49
50protected:
53
55
56private:
58 void operator=(const vtkSplitSharpEdgesPolyData&) = delete;
59
60 struct MarkAndSplitFunctor;
61
62 double FeatureAngle;
63 int OutputPointsPrecision;
64};
65VTK_ABI_NAMESPACE_END
66
67#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.
#define VTK_MARSHALAUTO