00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef COIN_SOVRMLFOG_H
00025 #define COIN_SOVRMLFOG_H
00026
00027 #include <Inventor/nodes/SoSubNode.h>
00028 #include <Inventor/nodes/SoNode.h>
00029 #include <Inventor/fields/SoSFString.h>
00030 #include <Inventor/fields/SoSFFloat.h>
00031 #include <Inventor/fields/SoSFColor.h>
00032 #include <Inventor/fields/SoSFBool.h>
00033
00034 class SoVRMLFogP;
00035
00036 class COIN_DLL_API SoVRMLFog : public SoNode
00037 {
00038 typedef SoNode inherited;
00039 SO_NODE_HEADER(SoVRMLFog);
00040
00041 public:
00042 static void initClass(void);
00043 SoVRMLFog(void);
00044
00045 SoSFString fogType;
00046 SoSFFloat visibilityRange;
00047 SoSFColor color;
00048
00049 virtual void GLRender( SoGLRenderAction * action );
00050
00051 protected:
00052 SoSFBool set_bind;
00053 SoSFBool isBound;
00054
00055 virtual ~SoVRMLFog();
00056
00057 private:
00058 SoVRMLFogP * pimpl;
00059 };
00060
00061 #endif // ! COIN_SOVRMLFOG_H