Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoEnvironmentMap.h
1/*==============================================================================
2*** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3*** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4*** ***
5*** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6*** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7*** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8*** ***
9*** RESTRICTED RIGHTS LEGEND ***
10*** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11*** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12*** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13*** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14*** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15*** ***
16*** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
17*** MERIGNAC, FRANCE ***
18*** ALL RIGHTS RESERVED ***
19==============================================================================*/
20
21#pragma once
22
23#include <Inventor/nodes/SoNode.h>
24#include <Inventor/nodes/SoTextureCubeMap.h>
25
26#include <Inventor/fields/SoSFBool.h>
27#include <Inventor/fields/SoSFFloat.h>
28#include <Inventor/fields/SoMFFilePathString.h>
29#include <Inventor/fields/SoSFImage.h>
30
34
97class SoEnvironmentMap : public SoNode
98{
99 SO_NODE_HEADER(SoEnvironmentMap);
100
101public:
102
120
127
132
137
142
147
152
157
159
163 void setOverride(const SbBool state) override
164 {
165 override.setValue(state);
166 }
167
171 SbBool isOverride() const override
172 {
173 return override.getValue();
174 }
175
176private:
177 SoSFBool display;
178 SoSFBool override;
179
180private:
181 void GLRender(SoGLRenderAction* action) override;
182
183private:
184 static void initClass();
185 static void exitClass();
186
187 void fieldHasChanged(SoField* field) override;
188
189 SoTextureCubeMap* getTexture() const
190 {
191 return m_envMapTex.ptr();
192 }
193
194 static SbMatrix3 getMatrix(SoState* state);
195
196private:
197 virtual ~SoEnvironmentMap();
198
199private:
200 static void copySFImage(const SoSFImage& src, SoSFImage& dst);
201 void setupInternalFormat();
202
203 SoRef<SoTextureCubeMap> m_envMapTex;
204 SoRef<SoNode> m_envMapDisplayScene;
205 SoShaderParameter1i* m_isHDRParam;
206 SoShaderParameterMatrix3* m_envMapMatrixParam;
207};
SoMFFilePathString filenames
Names file(s) from which to read the environment map's texture image(s).
SoSFImage imageNegZ
See imagePosX.
SoSFImage imageNegX
See imagePosX.
SoSFImage imageNegY
See imagePosX.
SbBool isOverride() const override
Returns the state of the override flag.
void setOverride(const SbBool state) override
Turns the override flag on or off.
SoSFImage imagePosZ
See imagePosX.
SoSFImage imagePosX
Contains an in-memory representation of the environment map.
SoSFImage imagePosY
See imagePosX.
SoSFFloat intensity
Intensity of the environment.
Base class for all fields.
Definition SoField.h:234
Renders a scene graph using Open Inventor's Render Engine.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Multiple-value f...
T * ptr() const
Cast to C pointer.
Definition SoRef.h:167
Field containing a single Boolean value.
Definition SoSFBool.h:79
Field containing a floating-point value.
Definition SoSFFloat.h:78
Field containing a 2D image.
Definition SoSFImage.h:126
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Uniform shader p...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Uniform shader p...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Cube texture map...
int SbBool
Boolean type.
Definition SbBase.h:87