00001 #ifndef COIN_SOSHAPEHINTS_H
00002 #define COIN_SOSHAPEHINTS_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <Inventor/elements/SoShapeHintsElement.h>
00028 #include <Inventor/fields/SoSFEnum.h>
00029 #include <Inventor/fields/SoSFFloat.h>
00030 #include <Inventor/nodes/SoSubNode.h>
00031
00032 class COIN_DLL_API SoShapeHints : public SoNode {
00033 typedef SoNode inherited;
00034
00035 SO_NODE_HEADER(SoShapeHints);
00036
00037 public:
00038 static void initClass(void);
00039 SoShapeHints(void);
00040
00041 enum VertexOrdering {
00042 UNKNOWN_ORDERING = SoShapeHintsElement::UNKNOWN_ORDERING,
00043 CLOCKWISE = SoShapeHintsElement::CLOCKWISE,
00044 COUNTERCLOCKWISE = SoShapeHintsElement::COUNTERCLOCKWISE
00045 };
00046
00047 enum ShapeType {
00048 UNKNOWN_SHAPE_TYPE = SoShapeHintsElement::UNKNOWN_SHAPE_TYPE,
00049 SOLID = SoShapeHintsElement::SOLID
00050 };
00051
00052 enum FaceType {
00053 UNKNOWN_FACE_TYPE = SoShapeHintsElement::UNKNOWN_FACE_TYPE,
00054 CONVEX = SoShapeHintsElement::CONVEX
00055 };
00056
00057 SoSFEnum vertexOrdering;
00058 SoSFEnum shapeType;
00059 SoSFEnum faceType;
00060 SoSFFloat creaseAngle;
00061
00062 virtual void doAction(SoAction * action);
00063 virtual void GLRender(SoGLRenderAction * action);
00064 virtual void callback(SoCallbackAction * action);
00065 virtual void getBoundingBox(SoGetBoundingBoxAction * action);
00066 virtual void pick(SoPickAction * action);
00067
00068 protected:
00069 virtual ~SoShapeHints();
00070 };
00071
00072 #endif // !COIN_SOSHAPEHINTS_H