VTK
vtkSkybox.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSkybox.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 =========================================================================*/
22 #ifndef vtkSkybox_h
23 #define vtkSkybox_h
24 
25 #include "vtkRenderingCoreModule.h" // For export macro
26 #include "vtkActor.h"
27 
28 class VTKRENDERINGCORE_EXPORT vtkSkybox: public vtkActor
29 {
30 public:
31  static vtkSkybox* New();
32  vtkTypeMacro(vtkSkybox, vtkActor)
33  void PrintSelf(ostream &os, vtkIndent indent) override;
34 
40  double *GetBounds() override;
41 
42 protected:
43  vtkSkybox();
44  ~vtkSkybox() override;
45 
46 private:
47  vtkSkybox(const vtkSkybox&) = delete;
48  void operator=(const vtkSkybox&) = delete;
49 };
50 
51 #endif // vtkSkybox_h
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
double * GetBounds() override=0
Return a reference to the Prop3D's composite transform.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkActor * New()
Creates an actor with the following defaults: origin(0,0,0) position=(0,0,0) scale=(1,...
a simple class to control print indentation
Definition: vtkIndent.h:39
Renders a skybox environment.
Definition: vtkSkybox.h:28
double * GetBounds() override
Return a reference to the Prop3D's composite transform.