1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkSkybox.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkSkybox
* @brief Renders a skybox environment
*
* You must provide a texture cube map using the SetTexture method.
*/
#ifndef vtkSkybox_h
#define vtkSkybox_h
#include "vtkActor.h"
#include "vtkRenderingCoreModule.h" // For export macro
VTK_ABI_NAMESPACE_BEGIN
class VTKRENDERINGCORE_EXPORT vtkSkybox : public vtkActor
{
public:
static vtkSkybox* New();
vtkTypeMacro(vtkSkybox, vtkActor);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Get the bounds for this Actor as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax). (The
* method GetBounds(double bounds[6]) is available from the superclass.)
*/
using Superclass::GetBounds;
double* GetBounds() override;
///@{
/**
* Set/Get the projection to be used
*/
enum Projection
{
Cube,
Sphere,
Floor,
StereoSphere
};
vtkGetMacro(Projection, int);
vtkSetMacro(Projection, int);
void SetProjectionToCube() { this->SetProjection(vtkSkybox::Cube); }
void SetProjectionToSphere() { this->SetProjection(vtkSkybox::Sphere); }
void SetProjectionToStereoSphere() { this->SetProjection(vtkSkybox::StereoSphere); }
void SetProjectionToFloor() { this->SetProjection(vtkSkybox::Floor); }
///@}
///@{
/**
* Set/Get the plane equation for the floor.
*/
vtkSetVector4Macro(FloorPlane, float);
vtkGetVector4Macro(FloorPlane, float);
vtkSetVector3Macro(FloorRight, float);
vtkGetVector3Macro(FloorRight, float);
///@}
///@{
/**
* Define if the colors should be gamma corrected.
* This is generally required if the input texture is in linear color space.
* Default is off.
*/
vtkGetMacro(GammaCorrect, bool);
vtkSetMacro(GammaCorrect, bool);
vtkBooleanMacro(GammaCorrect, bool);
///@}
protected:
vtkSkybox();
~vtkSkybox() override;
int Projection;
float FloorPlane[4];
float FloorRight[3];
bool GammaCorrect = false;
private:
vtkSkybox(const vtkSkybox&) = delete;
void operator=(const vtkSkybox&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif // vtkSkybox_h
|