VTK  9.0.1
vtkGlyph2D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGlyph2D.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
30 #ifndef vtkGlyph2D_h
31 #define vtkGlyph2D_h
32 
33 #include "vtkFiltersCoreModule.h" // For export macro
34 #include "vtkGlyph3D.h"
35 
36 class VTKFILTERSCORE_EXPORT vtkGlyph2D : public vtkGlyph3D
37 {
38 public:
39  vtkTypeMacro(vtkGlyph2D, vtkGlyph3D);
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
48  static vtkGlyph2D* New();
49 
50 protected:
52  ~vtkGlyph2D() override {}
53 
55 
56 private:
57  vtkGlyph2D(const vtkGlyph2D&) = delete;
58  void operator=(const vtkGlyph2D&) = delete;
59 };
60 
61 #endif
vtkGlyph3D::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkGlyph2D
copy oriented and scaled glyph geometry to every input point (2D specialization)
Definition: vtkGlyph2D.h:36
vtkGlyph3D::New
static vtkGlyph3D * New()
Construct object with scaling on, scaling mode is by scalar value, scale factor = 1....
vtkGlyph2D::~vtkGlyph2D
~vtkGlyph2D() override
Definition: vtkGlyph2D.h:52
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkGlyph3D::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGlyph3D
copy oriented and scaled glyph geometry to every input point
Definition: vtkGlyph3D.h:105
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkGlyph3D.h
vtkGlyph2D::vtkGlyph2D
vtkGlyph2D()
Definition: vtkGlyph2D.h:51