VTK  9.2.6
vtkOpenGLSkybox.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOpenGLSkybox.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=========================================================================*/
26#ifndef vtkOpenGLSkybox_h
27#define vtkOpenGLSkybox_h
28
29#include "vtkNew.h" // for ivars
30#include "vtkRenderingOpenGL2Module.h" // For export macro
31#include "vtkSkybox.h"
32
33class vtkOpenGLActor;
35
36class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLSkybox : public vtkSkybox
37{
38public:
40 vtkTypeMacro(vtkOpenGLSkybox, vtkSkybox);
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
46 void Render(vtkRenderer* ren, vtkMapper* mapper) override;
47
48protected:
50 ~vtkOpenGLSkybox() override;
51
54 float LastCameraPosition[3];
55
56 void UpdateUniforms(vtkObject*, unsigned long, void*);
57
61
62private:
63 vtkOpenGLSkybox(const vtkOpenGLSkybox&) = delete;
64 void operator=(const vtkOpenGLSkybox&) = delete;
65};
66
67#endif
a simple class to control print indentation
Definition vtkIndent.h:40
abstract class specifies interface to map data to graphics primitives
Definition vtkMapper.h:88
Allocate and hold a VTK object.
Definition vtkNew.h:62
abstract base class for most VTK objects
Definition vtkObject.h:63
OpenGL actor.
PolyDataMapper using OpenGL to render.
OpenGL Skybox.
vtkRenderer * CurrentRenderer
vtkNew< vtkOpenGLPolyDataMapper > CubeMapper
void UpdateUniforms(vtkObject *, unsigned long, void *)
static vtkOpenGLSkybox * New()
~vtkOpenGLSkybox() override
vtkNew< vtkOpenGLActor > OpenGLActor
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Render(vtkRenderer *ren, vtkMapper *mapper) override
Actual Skybox render method.
abstract specification for renderers
Definition vtkRenderer.h:73
Renders a skybox environment.
Definition vtkSkybox.h:32