00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _SO_POLYGON_OFFSET_ELEMENT_
00026 #define _SO_POLYGON_OFFSET_ELEMENT_
00027
00028 #include <Inventor/elements/SoReplacedElement.h>
00029
00041 SoEXTENDER_Documented class SoPolygonOffsetElement : public SoReplacedElement {
00042
00043 SO_ELEMENT_HEADER(SoPolygonOffsetElement) ;
00044
00045 public:
00047 enum Style {
00049 FILLED = 0x01,
00051 LINES = 0x02,
00053 POINTS = 0x04
00054 } ;
00055
00057 static void set(SoState *state, SoNode *node, float factor, float units, Style styles, SbBool on) ;
00059 static void get(SoState *state, float &factor, float &units, Style &styles, SbBool &on) ;
00060
00062 virtual void push(SoState *state) ;
00063
00065 static void getDefault(float &factor, float &units, Style &styles, SbBool &on) ;
00066
00067 private:
00068
00070 virtual void init(SoState *state);
00071
00073 virtual SbBool matches(const SoElement* elt) const;
00074
00076 virtual SoElement* copyMatchInfo() const;
00077
00078 private:
00079
00080 static void initClass() ;
00081 static void exitClass() ;
00082
00083 private:
00084 float m_factor ;
00085 float m_units ;
00086 Style m_stylesMask ;
00087 SbBool m_on ;
00088
00089 virtual void setElt(float factor, float units, Style styles, SbBool on) ;
00090
00091 virtual ~SoPolygonOffsetElement() ;
00092 } ;
00093
00094 #endif
00095
00096
00097