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
31
class
SoGLRenderAction
;
32
class
SoShaderParameter1i
;
33
class
SoShaderParameterMatrix3
;
34
97
class
SoEnvironmentMap
:
public
SoNode
98
{
99
SO_NODE_HEADER(
SoEnvironmentMap
);
100
101
public
:
102
119
SoMFFilePathString
filenames
;
120
126
SoSFImage
imagePosX
;
127
131
SoSFImage
imagePosY
;
132
136
SoSFImage
imagePosZ
;
137
141
SoSFImage
imageNegX
;
142
146
SoSFImage
imageNegY
;
147
151
SoSFImage
imageNegZ
;
152
156
SoSFFloat
intensity
;
157
158
SoEnvironmentMap
();
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
176
private
:
177
SoSFBool
display;
178
SoSFBool
override
;
179
180
private
:
181
void
GLRender(
SoGLRenderAction
* action)
override
;
182
183
private
:
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
196
private
:
197
virtual
~SoEnvironmentMap
();
198
199
private
:
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
};
SoEnvironmentMap::filenames
SoMFFilePathString filenames
Names file(s) from which to read the environment map's texture image(s).
Definition
SoEnvironmentMap.h:119
SoEnvironmentMap::imageNegZ
SoSFImage imageNegZ
See imagePosX.
Definition
SoEnvironmentMap.h:151
SoEnvironmentMap::imageNegX
SoSFImage imageNegX
See imagePosX.
Definition
SoEnvironmentMap.h:141
SoEnvironmentMap::SoEnvironmentMap
SoEnvironmentMap()
SoEnvironmentMap::imageNegY
SoSFImage imageNegY
See imagePosX.
Definition
SoEnvironmentMap.h:146
SoEnvironmentMap::isOverride
SbBool isOverride() const override
Returns the state of the override flag.
Definition
SoEnvironmentMap.h:171
SoEnvironmentMap::setOverride
void setOverride(const SbBool state) override
Turns the override flag on or off.
Definition
SoEnvironmentMap.h:163
SoEnvironmentMap::imagePosZ
SoSFImage imagePosZ
See imagePosX.
Definition
SoEnvironmentMap.h:136
SoEnvironmentMap::imagePosX
SoSFImage imagePosX
Contains an in-memory representation of the environment map.
Definition
SoEnvironmentMap.h:126
SoEnvironmentMap::imagePosY
SoSFImage imagePosY
See imagePosX.
Definition
SoEnvironmentMap.h:131
SoEnvironmentMap::intensity
SoSFFloat intensity
Intensity of the environment.
Definition
SoEnvironmentMap.h:156
SoField
Base class for all fields.
Definition
SoField.h:234
SoGLRenderAction
Renders a scene graph using Open Inventor's Render Engine.
Definition
SoGLRenderAction.h:192
SoMFFilePathString
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Multiple-value f...
Definition
SoMFFilePathString.h:60
SoRef::ptr
T * ptr() const
Cast to C pointer.
Definition
SoRef.h:167
SoSFBool
Field containing a single Boolean value.
Definition
SoSFBool.h:79
SoSFFloat
Field containing a floating-point value.
Definition
SoSFFloat.h:78
SoSFImage
Field containing a 2D image.
Definition
SoSFImage.h:126
SoShaderParameter1i
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Uniform shader p...
Definition
SoShaderParameter.h:485
SoShaderParameterMatrix3
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Uniform shader p...
Definition
SoShaderParameter.h:1575
SoTextureCubeMap
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Cube texture map...
Definition
SoTextureCubeMap.h:236
SbBool
int SbBool
Boolean type.
Definition
SbBase.h:87
Inventor
nodes
SoEnvironmentMap.h
Generated by
1.13.2