00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef COIN_SOCLIPPLANE_H
00021 #define COIN_SOCLIPPLANE_H
00022
00023 #include <Inventor/nodes/SoSubNode.h>
00024 #include <Inventor/fields/SoSFPlane.h>
00025 #include <Inventor/fields/SoSFBool.h>
00026
00027
00028 class COIN_DLL_API SoClipPlane : public SoNode {
00029 typedef SoNode inherited;
00030
00031 SO_NODE_HEADER(SoClipPlane);
00032
00033 public:
00034 static void initClass(void);
00035 SoClipPlane(void);
00036
00037 SoSFPlane plane;
00038 SoSFBool on;
00039
00040 virtual void doAction(SoAction * action);
00041 virtual void GLRender(SoGLRenderAction * action);
00042 virtual void callback(SoCallbackAction * action);
00043 virtual void pick(SoPickAction * action);
00044
00045 protected:
00046 virtual ~SoClipPlane();
00047 };
00048
00049 #endif // !COIN_SOCLIPPLANE_H