File indexing completed on 2025-01-18 10:02:57
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _AppDef_MyLineTool_HeaderFile
0018 #define _AppDef_MyLineTool_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022
0023 #include <Standard_Integer.hxx>
0024 #include <TColgp_Array1OfPnt.hxx>
0025 #include <TColgp_Array1OfPnt2d.hxx>
0026 #include <TColgp_Array1OfVec.hxx>
0027 #include <TColgp_Array1OfVec2d.hxx>
0028 #include <Approx_Status.hxx>
0029 class AppDef_MultiLine;
0030
0031
0032
0033
0034 class AppDef_MyLineTool
0035 {
0036 public:
0037
0038 DEFINE_STANDARD_ALLOC
0039
0040
0041
0042 Standard_EXPORT static Standard_Integer FirstPoint (const AppDef_MultiLine& ML);
0043
0044
0045 Standard_EXPORT static Standard_Integer LastPoint (const AppDef_MultiLine& ML);
0046
0047
0048 Standard_EXPORT static Standard_Integer NbP2d (const AppDef_MultiLine& ML);
0049
0050
0051 Standard_EXPORT static Standard_Integer NbP3d (const AppDef_MultiLine& ML);
0052
0053
0054
0055 Standard_EXPORT static void Value (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt& tabPt);
0056
0057
0058
0059 Standard_EXPORT static void Value (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt2d& tabPt2d);
0060
0061
0062
0063 Standard_EXPORT static void Value (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt& tabPt, TColgp_Array1OfPnt2d& tabPt2d);
0064
0065
0066
0067 Standard_EXPORT static Standard_Boolean Tangency (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV);
0068
0069
0070
0071 Standard_EXPORT static Standard_Boolean Tangency (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d& tabV2d);
0072
0073
0074
0075 Standard_EXPORT static Standard_Boolean Tangency (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV, TColgp_Array1OfVec2d& tabV2d);
0076
0077
0078
0079 Standard_EXPORT static Standard_Boolean Curvature (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV);
0080
0081
0082
0083 Standard_EXPORT static Standard_Boolean Curvature (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d& tabV2d);
0084
0085
0086
0087 Standard_EXPORT static Standard_Boolean Curvature (const AppDef_MultiLine& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV, TColgp_Array1OfVec2d& tabV2d);
0088
0089
0090 Standard_EXPORT static Approx_Status WhatStatus (const AppDef_MultiLine& ML, const Standard_Integer I1, const Standard_Integer I2);
0091
0092
0093
0094 Standard_EXPORT static AppDef_MultiLine MakeMLBetween (const AppDef_MultiLine& ML,
0095 const Standard_Integer I1,
0096 const Standard_Integer I2,
0097 const Standard_Integer NbPMin);
0098
0099
0100
0101 Standard_EXPORT static Standard_Boolean MakeMLOneMorePoint (const AppDef_MultiLine& ML,
0102 const Standard_Integer I1,
0103 const Standard_Integer I2,
0104 const Standard_Integer indbad,
0105 AppDef_MultiLine& OtherLine);
0106 };
0107
0108 #endif