VTK  9.5.20251011
vtkOutlineCornerSource.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
14#ifndef vtkOutlineCornerSource_h
15#define vtkOutlineCornerSource_h
16
17#include "vtkFiltersSourcesModule.h" // For export macro
18#include "vtkOutlineSource.h"
19#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
20
21VTK_ABI_NAMESPACE_BEGIN
22class VTKFILTERSSOURCES_EXPORT VTK_MARSHALAUTO vtkOutlineCornerSource : public vtkOutlineSource
23{
24public:
26 void PrintSelf(ostream& os, vtkIndent indent) override;
27
32
34
38 vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
39 vtkGetMacro(CornerFactor, double);
41
42protected:
44 ~vtkOutlineCornerSource() override = default;
45
47
49
50private:
52 void operator=(const vtkOutlineCornerSource&) = delete;
53};
54
55VTK_ABI_NAMESPACE_END
56#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
create wireframe outline corners around bounding box
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkOutlineCornerSource * New()
Construct outline corner source with default corner factor = 0.2.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkOutlineCornerSource() override=default
create wireframe outline around bounding box
#define VTK_MARSHALAUTO