00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 00024 #ifndef _PO_CURVE_LINE_ 00025 #define _PO_CURVE_LINE_ 00026 00027 #include <MeshViz/graph/PoChart.h> 00028 00029 #include <Inventor/fields/SoSFEnum.h> 00030 #include <Inventor/fields/SoSFInt32.h> 00031 #include <Inventor/fields/SoSFFloat.h> 00032 00075 class PoCurveLine : public PoChart { 00076 00077 SO_KIT_HEADER(PoCurveLine) ; 00078 00079 /* Define fields for new parts */ 00080 SO_KIT_CATALOG_ENTRY_HEADER(curve) ; 00081 00082 00083 public: 00084 00088 enum ThicknessBinding { 00092 PER_PART_THICKNESS, 00096 PER_VERTEX_THICKNESS 00105 } ; 00106 00107 00108 00109 /* Fields */ 00110 00116 SoSFInt32 thicknessIndex ; 00117 00126 SoSFEnum thicknessBinding ; 00127 00131 SoSFFloat thicknessFactor ; 00132 00136 PoCurveLine() ; 00137 00138 /*----------------------------------------------------------------------------*/ 00139 00140 00141 private: 00142 static void initClass() ; 00143 static void exitClass() ; 00144 00145 private: 00146 virtual ~PoCurveLine() ; 00147 // Destructor. 00148 00149 // Overloaded methods 00150 virtual void rebuild() ; 00151 virtual void addElementsAllCaches() ; 00152 virtual void preRebuild() ; 00153 00154 // Methods 00155 virtual void setDefaultOnNonWritingFields() ; 00156 virtual SbBool setUpConnections(SbBool onOff, SbBool doItAlways = FALSE) ; 00157 00158 // Computes from the curve given by the parameter x, y and size, and from 00159 // indices of the source points of the curve, the sums of distances between 00160 // 2 consecutive sources points and the distances between 2 points. 00161 void computeCurveDistances(const float *x, const float *y, int size, 00162 const int *indexSource, float* &curveDist, 00163 float* &sumDist) ; 00164 private: 00165 // Sensors 00166 FieldSensorList fieldSensorList ; 00167 00168 // List of fields defined in this class 00169 SoFieldList fieldList ; 00170 } ; 00171 00172 /*----------------------------------------------------------------------------*/ 00173 00174 #endif /* _PO_CURVE_LINE_ */ 00175 00176