VTK  9.5.20250903
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
53#ifndef vtkGlyph2D_h
54#define vtkGlyph2D_h
55
56#include "vtkFiltersCoreModule.h" // For export macro
57#include "vtkGlyph3D.h"
58#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
59
60VTK_ABI_NAMESPACE_BEGIN
61class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkGlyph2D : public vtkGlyph3D
62{
63public:
65
68 vtkTypeMacro(vtkGlyph2D, vtkGlyph3D);
69 void PrintSelf(ostream& os, vtkIndent indent) override;
71
78 static vtkGlyph2D* New();
79
80protected:
81 vtkGlyph2D() = default;
82 ~vtkGlyph2D() override = default;
83
85
86private:
87 vtkGlyph2D(const vtkGlyph2D&) = delete;
88 void operator=(const vtkGlyph2D&) = delete;
89};
90
91VTK_ABI_NAMESPACE_END
92#endif
copy oriented and scaled glyph geometry to every input point (2D specialization)
Definition vtkGlyph2D.h:62
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.
copy oriented and scaled glyph geometry to every input point
Definition vtkGlyph3D.h:212
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
#define VTK_MARSHALAUTO