VTK  9.6.1
vtkGlyph2D.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
23
24#ifndef vtkGlyph2D_h
25#define vtkGlyph2D_h
26
27#include "vtkFiltersCoreModule.h" // For export macro
28#include "vtkGlyph3D.h"
29#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
30
31VTK_ABI_NAMESPACE_BEGIN
32class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkGlyph2D : public vtkGlyph3D
33{
34public:
36
39 vtkTypeMacro(vtkGlyph2D, vtkGlyph3D);
40 void PrintSelf(ostream& os, vtkIndent indent) override;
42
49 static vtkGlyph2D* New();
50
51protected:
52 vtkGlyph2D() = default;
53 ~vtkGlyph2D() override = default;
54
56
57private:
58 vtkGlyph2D(const vtkGlyph2D&) = delete;
59 void operator=(const vtkGlyph2D&) = delete;
60};
61
62VTK_ABI_NAMESPACE_END
63#endif
static vtkGlyph2D * New()
Construct object with scaling on, scaling mode is by scalar value, scale factor = 1....
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for obtaining type information and printing.
~vtkGlyph2D() override=default
vtkGlyph2D()=default
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
#define VTK_MARSHALAUTO