0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / BRepApprox / BRepApprox_TheMultiLineToolOfApprox.hxx
1 // Created on: 1995-06-06
2 // Created by: Jean Yves LEBEY
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _BRepApprox_TheMultiLineToolOfApprox_HeaderFile
18 #define _BRepApprox_TheMultiLineToolOfApprox_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <Standard_Integer.hxx>
25 #include <TColgp_Array1OfPnt.hxx>
26 #include <TColgp_Array1OfPnt2d.hxx>
27 #include <Standard_Boolean.hxx>
28 #include <TColgp_Array1OfVec.hxx>
29 #include <TColgp_Array1OfVec2d.hxx>
30 #include <BRepApprox_TheMultiLineOfApprox.hxx>
31 #include <Approx_Status.hxx>
32 class BRepApprox_TheMultiLineOfApprox;
33 class ApproxInt_SvSurfaces;
34
35
36
37 class BRepApprox_TheMultiLineToolOfApprox 
38 {
39 public:
40
41   DEFINE_STANDARD_ALLOC
42
43   
44   //! Returns the number of multipoints of the TheMultiLine.
45     static Standard_Integer FirstPoint (const BRepApprox_TheMultiLineOfApprox& ML);
46   
47   //! Returns the number of multipoints of the TheMultiLine.
48     static Standard_Integer LastPoint (const BRepApprox_TheMultiLineOfApprox& ML);
49   
50   //! Returns the number of 2d points of a TheMultiLine.
51     static Standard_Integer NbP2d (const BRepApprox_TheMultiLineOfApprox& ML);
52   
53   //! Returns the number of 3d points of a TheMultiLine.
54     static Standard_Integer NbP3d (const BRepApprox_TheMultiLineOfApprox& ML);
55   
56   //! returns the 3d points of the multipoint <MPointIndex>
57   //! when only 3d points exist.
58     static void Value (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt& tabPt);
59   
60   //! returns the 2d points of the multipoint <MPointIndex>
61   //! when only 2d points exist.
62     static void Value (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt2d& tabPt2d);
63   
64   //! returns the 3d and 2d points of the multipoint
65   //! <MPointIndex>.
66     static void Value (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt& tabPt, TColgp_Array1OfPnt2d& tabPt2d);
67   
68   //! returns the 3d points of the multipoint <MPointIndex>
69   //! when only 3d points exist.
70     static Standard_Boolean Tangency (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV);
71   
72   //! returns the 2d tangency points of the multipoint
73   //! <MPointIndex> only when 2d points exist.
74     static Standard_Boolean Tangency (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d& tabV2d);
75   
76   //! returns the 3d and 2d points of the multipoint
77   //! <MPointIndex>.
78     static Standard_Boolean Tangency (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV, TColgp_Array1OfVec2d& tabV2d);
79   
80   //! returns the 3d curvature of the multipoint <MPointIndex>
81   //! when only 3d points exist.
82     static Standard_Boolean Curvature (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV);
83   
84   //! returns the 2d curvature points of the multipoint
85   //! <MPointIndex> only when 2d points exist.
86     static Standard_Boolean Curvature (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d& tabV2d);
87   
88   //! returns the 3d and 2d curvature of the multipoint
89   //! <MPointIndex>.
90     static Standard_Boolean Curvature (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec& tabV, TColgp_Array1OfVec2d& tabV2d);
91   
92   //! Is called if WhatStatus returned "PointsAdded".
93     static BRepApprox_TheMultiLineOfApprox MakeMLBetween (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer I1, const Standard_Integer I2, const Standard_Integer NbPMin);
94   
95     static Approx_Status WhatStatus (const BRepApprox_TheMultiLineOfApprox& ML, const Standard_Integer I1, const Standard_Integer I2);
96   
97   //! Dump of the current multi-line.
98   Standard_EXPORT static void Dump (const BRepApprox_TheMultiLineOfApprox& ML);
99
100
101
102
103 protected:
104
105
106
107
108
109 private:
110
111
112
113
114
115 };
116
117 #define TheMultiLine BRepApprox_TheMultiLineOfApprox
118 #define TheMultiLine_hxx <BRepApprox_TheMultiLineOfApprox.hxx>
119 #define TheMultiMPoint ApproxInt_SvSurfaces
120 #define TheMultiMPoint_hxx <ApproxInt_SvSurfaces.hxx>
121 #define ApproxInt_MultiLineTool BRepApprox_TheMultiLineToolOfApprox
122 #define ApproxInt_MultiLineTool_hxx <BRepApprox_TheMultiLineToolOfApprox.hxx>
123
124 #include <ApproxInt_MultiLineTool.lxx>
125
126 #undef TheMultiLine
127 #undef TheMultiLine_hxx
128 #undef TheMultiMPoint
129 #undef TheMultiMPoint_hxx
130 #undef ApproxInt_MultiLineTool
131 #undef ApproxInt_MultiLineTool_hxx
132
133
134
135
136 #endif // _BRepApprox_TheMultiLineToolOfApprox_HeaderFile