1#ifndef COIN_SOTEXTURECUBEMAP_H
2#define COIN_SOTEXTURECUBEMAP_H
36#include <Inventor/nodes/SoSubNode.h>
37#include <Inventor/nodes/SoTexture.h>
38#include <Inventor/fields/SoSFEnum.h>
39#include <Inventor/fields/SoSFImage.h>
40#include <Inventor/fields/SoMFString.h>
41#include <Inventor/fields/SoSFColor.h>
42#include <Inventor/elements/SoMultiTextureImageElement.h>
46class SoTextureCubeMapP;
54 static void initClass(
void);
58 MODULATE = SoMultiTextureImageElement::MODULATE,
59 DECAL = SoMultiTextureImageElement::DECAL,
60 BLEND = SoMultiTextureImageElement::BLEND,
61 REPLACE = SoMultiTextureImageElement::REPLACE
65 REPEAT = SoMultiTextureImageElement::REPEAT,
66 CLAMP = SoMultiTextureImageElement::CLAMP
83 virtual void doAction(
SoAction * action);
88 static SbBool readImage(
const SbString &
fname,
int & w,
int & h,
int &
nc,
89 unsigned char *& bytes);
93 virtual SbBool readInstance(
SoInput *
in,
unsigned short flags);
95 int getReadStatus(
void);
96 void setReadStatus(
int s);
100 static void filenameSensorCB(
void *,
SoSensor *);
101 SoSFImage * getImageField(
const int idx);
103 SoTextureCubeMapP * pimpl;
The SbList class is a template container class for lists.
Definition SbList.h:70
The SbString class is a string class with convenience functions for string operations.
Definition SbString.h:52
The SoAction class is the base class for all traversal actions.
Definition SoAction.h:77
The SoCallbackAction class invokes callbacks at specific nodes.
Definition SoCallbackAction.h:80
The SoFieldSensor class detects changes to a field.
Definition SoFieldSensor.h:38
The SoGLRenderAction class renders the scene graph with OpenGL calls.
Definition SoGLRenderAction.h:50
The SoMFString class is a container for SbString values.
Definition SoMFString.h:40
The SoNotList class is a list of SoNotRec notification records.
Definition SoNotification.h:43
The SoRayPickAction class does ray intersection with scene graphs.
Definition SoRayPickAction.h:50
The SoSFColor class is a container for an SbColor value.
Definition SoSFColor.h:40
The SoSFEnum class is a container for an enum value.
Definition SoSFEnum.h:40
The SoSFImage class is used to store pixel images.
Definition SoSFImage.h:42
The SoSensor class is the abstract base class for all sensors.
Definition SoSensor.h:43
The SoTextureCubeMap class is used to map a cube map onto subsequent shape nodes.
Definition SoTextureCubeMap.h:48
SoSFEnum wrapS
Definition SoTextureCubeMap.h:78
Model
Definition SoTextureCubeMap.h:57
SoSFColor blendColor
Definition SoTextureCubeMap.h:81
SoSFEnum model
Definition SoTextureCubeMap.h:80
SoSFImage imageNegY
Definition SoTextureCubeMap.h:74
Wrap
Definition SoTextureCubeMap.h:64
SoSFImage imageNegZ
Definition SoTextureCubeMap.h:76
SoSFImage imagePosZ
Definition SoTextureCubeMap.h:75
SoMFString filenames
Definition SoTextureCubeMap.h:69
SoSFEnum wrapT
Definition SoTextureCubeMap.h:79
SoSFImage imagePosY
Definition SoTextureCubeMap.h:73
SoSFImage imageNegX
Definition SoTextureCubeMap.h:72
SoSFImage imagePosX
Definition SoTextureCubeMap.h:71
Common base class for texture nodes.
Definition SoTexture.h:39