Warning, file /include/opencascade/IMeshData_Curve.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _IMeshData_Curve_HeaderFile
0017 #define _IMeshData_Curve_HeaderFile
0018
0019 #include <IMeshData_ParametersList.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 class gp_Pnt;
0023
0024
0025
0026 class IMeshData_Curve : public IMeshData_ParametersList
0027 {
0028 public:
0029
0030
0031 virtual ~IMeshData_Curve()
0032 {
0033 }
0034
0035
0036 Standard_EXPORT virtual void InsertPoint(
0037 const Standard_Integer thePosition,
0038 const gp_Pnt& thePoint,
0039 const Standard_Real theParamOnPCurve) = 0;
0040
0041
0042 Standard_EXPORT virtual void AddPoint (
0043 const gp_Pnt& thePoint,
0044 const Standard_Real theParamOnCurve) = 0;
0045
0046
0047 Standard_EXPORT virtual gp_Pnt& GetPoint (const Standard_Integer theIndex) = 0;
0048
0049
0050 Standard_EXPORT virtual void RemovePoint (const Standard_Integer theIndex) = 0;
0051
0052 DEFINE_STANDARD_RTTIEXT(IMeshData_Curve, IMeshData_ParametersList)
0053
0054 protected:
0055
0056
0057 IMeshData_Curve()
0058 {
0059 }
0060 };
0061
0062 #endif