VTK  9.1.0
vtkFollower.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkFollower.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 =========================================================================*/
32 #ifndef vtkFollower_h
33 #define vtkFollower_h
34 
35 #include "vtkActor.h"
36 #include "vtkRenderingCoreModule.h" // For export macro
37 
38 class vtkCamera;
39 
40 class VTKRENDERINGCORE_EXPORT vtkFollower : public vtkActor
41 {
42 public:
43  vtkTypeMacro(vtkFollower, vtkActor);
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
49  static vtkFollower* New();
50 
52 
56  virtual void SetCamera(vtkCamera*);
57  vtkGetObjectMacro(Camera, vtkCamera);
59 
61 
66  int RenderOpaqueGeometry(vtkViewport* viewport) override;
68  virtual void Render(vtkRenderer* ren);
70 
75 
80  void ComputeMatrix() override;
81 
85  void ShallowCopy(vtkProp* prop) override;
86 
87 protected:
89  ~vtkFollower() override;
90 
93 
94  // Internal matrices to avoid New/Delete for performance reasons
96 
97 private:
98  vtkFollower(const vtkFollower&) = delete;
99  void operator=(const vtkFollower&) = delete;
100 
101  // hide the two parameter Render() method from the user and the compiler.
102  void Render(vtkRenderer*, vtkMapper*) override {}
103 };
104 
105 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:46
virtual void Render(vtkRenderer *, vtkMapper *)
This causes the actor to be rendered.
Definition: vtkActor.h:87
a virtual camera for 3D rendering
Definition: vtkCamera.h:46
a subclass of actor that always faces the camera
Definition: vtkFollower.h:41
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override
This causes the actor to be rendered.
static vtkFollower * New()
Creates a follower with no camera set.
void ComputeMatrix() override
Generate the matrix based on ivars.
int RenderOpaqueGeometry(vtkViewport *viewport) override
This causes the actor to be rendered.
vtkActor * Device
Definition: vtkFollower.h:92
void ReleaseGraphicsResources(vtkWindow *) override
Release any graphics resources associated with this vtkProp3DFollower.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkFollower() override
virtual void Render(vtkRenderer *ren)
This causes the actor to be rendered.
vtkCamera * Camera
Definition: vtkFollower.h:91
virtual void SetCamera(vtkCamera *)
Set/Get the camera to follow.
vtkMatrix4x4 * InternalMatrix
Definition: vtkFollower.h:95
void ShallowCopy(vtkProp *prop) override
Shallow copy of a follower.
a simple class to control print indentation
Definition: vtkIndent.h:34
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:82
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:36
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:57
abstract specification for renderers
Definition: vtkRenderer.h:73
abstract specification for Viewports
Definition: vtkViewport.h:47
window superclass for vtkRenderWindow
Definition: vtkWindow.h:39