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 _PO_CURVE3_
00025 #define _PO_CURVE3_
00026
00027 #include <MeshViz/graph/PoGraphMaster.h>
00028
00029 #include <Inventor/fields/SoSFEnum.h>
00030 #include <Inventor/fields/SoSFBool.h>
00031 #include <Inventor/fields/SoSFString.h>
00032 #include <Inventor/fields/SoMFVec3f.h>
00033
00058 class PoCurve3 : public PoGraphMaster {
00059
00060 SO_KIT_HEADER(PoCurve3) ;
00061
00062
00063 SO_KIT_CATALOG_ENTRY_HEADER(curvePointSep) ;
00064 SO_KIT_CATALOG_ENTRY_HEADER(curvePointApp) ;
00065 SO_KIT_CATALOG_ENTRY_HEADER(curvePoint) ;
00066
00067 SO_KIT_CATALOG_ENTRY_HEADER(markerSep) ;
00068 SO_KIT_CATALOG_ENTRY_HEADER(markerApp) ;
00069 SO_KIT_CATALOG_ENTRY_HEADER(marker) ;
00070
00071
00072 public:
00073
00077 enum CurveRep {
00081 CURVE_NONE,
00085 CURVE_POLYLINE,
00089 CURVE_SMOOTH
00090 } ;
00091
00092
00093
00094
00095
00096
00097
00101 SoMFVec3f point ;
00102
00106 SoSFEnum curveRep ;
00107
00111 SoSFBool isMarkerVisible ;
00112
00119 SoSFString markerString ;
00120
00121
00122
00123
00124
00128 PoCurve3()
00129 { init(TRUE) ; }
00130
00135 PoCurve3(int numPoints, const SbVec3f *_point, CurveRep _curveRep = CURVE_POLYLINE)
00136 { init(FALSE, numPoints, _point, _curveRep) ; }
00137
00141 virtual void rebuild() ;
00142
00143
00144 private:
00145 static void initClass() ;
00146 static void exitClass() ;
00147
00148 private:
00149
00150
00151 virtual ~PoCurve3() ;
00152 virtual void setDefaultOnNonWritingFields() ;
00153 virtual SbBool setUpConnections(SbBool onOff, SbBool doItAlways = FALSE) ;
00154
00155 private:
00156
00157 void init(SbBool isDefault, int numPoints=0, const SbVec3f *_point=NULL,
00158 CurveRep _curveRep = CURVE_POLYLINE) ;
00159
00160
00161 FieldSensorList fieldSensorList ;
00162
00163
00164 SoFieldList fieldList ;
00165
00166 } ;
00167
00168
00169
00170 #endif
00171
00172