VTK  9.6.2
vtkOutlineCornerFilter.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
36
37#ifndef vtkOutlineCornerFilter_h
38#define vtkOutlineCornerFilter_h
39
40#include "vtkFiltersSourcesModule.h" // For export macro
42#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
43VTK_ABI_NAMESPACE_BEGIN
45
46class VTKFILTERSSOURCES_EXPORT VTK_MARSHALAUTO vtkOutlineCornerFilter : public vtkPolyDataAlgorithm
47{
48public:
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
56
58
62 vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
63 vtkGetMacro(CornerFactor, double);
65
66protected:
69
72 int FillInputPortInformation(int port, vtkInformation* info) override;
73
75
76private:
78 void operator=(const vtkOutlineCornerFilter&) = delete;
79};
80
81VTK_ABI_NAMESPACE_END
82#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkOutlineCornerSource * OutlineCornerSource
int FillInputPortInformation(int port, vtkInformation *info) override
~vtkOutlineCornerFilter() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkOutlineCornerFilter * New()
Construct outline corner filter with default corner factor = 0.2.
create wireframe outline corners around bounding box
#define VTK_MARSHALAUTO