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=========================================================================*/
41#ifndef vtkFollower_h
42#define vtkFollower_h
43
44#include "vtkActor.h"
45#include "vtkRenderingCoreModule.h" // For export macro
46
47class vtkCamera;
48
49class VTKRENDERINGCORE_EXPORT vtkFollower : public vtkActor
50{
51public:
52 vtkTypeMacro(vtkFollower, vtkActor);
53 void PrintSelf(ostream& os, vtkIndent indent) override;
54
58 static vtkFollower* New();
59
61
65 virtual void SetCamera(vtkCamera*);
66 vtkGetObjectMacro(Camera, vtkCamera);
68
70
75 int RenderOpaqueGeometry(vtkViewport* viewport) override;
77 virtual void Render(vtkRenderer* ren);
79
84
89 void ComputeMatrix() override;
90
94 void ShallowCopy(vtkProp* prop) override;
95
96protected:
98 ~vtkFollower() override;
99
102
103 // Internal matrices to avoid New/Delete for performance reasons
105
106private:
107 vtkFollower(const vtkFollower&) = delete;
108 void operator=(const vtkFollower&) = delete;
109
110 // hide the two parameter Render() method from the user and the compiler.
111 void Render(vtkRenderer*, vtkMapper*) override {}
112};
113
114#endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:55
virtual void Render(vtkRenderer *, vtkMapper *)
This causes the actor to be rendered.
Definition: vtkActor.h:96
a virtual camera for 3D rendering
Definition: vtkCamera.h:55
a subclass of actor that always faces the camera
Definition: vtkFollower.h:50
static vtkFollower * New()
Creates a follower with no camera set.
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override
This causes the actor to be rendered.
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:101
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:100
virtual void SetCamera(vtkCamera *)
Set/Get the camera to follow.
vtkMatrix4x4 * InternalMatrix
Definition: vtkFollower.h:104
void ShallowCopy(vtkProp *prop) override
Shallow copy of a follower.
a simple class to control print indentation
Definition: vtkIndent.h:43
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:91
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:45
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:56
window superclass for vtkRenderWindow
Definition: vtkWindow.h:45