0032485: Modeling Algorithms - Add Clone() function for adapters
[occt.git] / src / BiTgte / BiTgte_CurveOnEdge.hxx
1 // Created on: 1997-01-10
2 // Created by: Bruno DUMORTIER
3 // Copyright (c) 1997-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 _BiTgte_CurveOnEdge_HeaderFile
18 #define _BiTgte_CurveOnEdge_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <TopoDS_Edge.hxx>
25 #include <GeomAbs_CurveType.hxx>
26 #include <gp_Circ.hxx>
27 #include <Adaptor3d_Curve.hxx>
28 #include <Standard_Real.hxx>
29 #include <GeomAbs_Shape.hxx>
30 #include <Standard_Integer.hxx>
31 #include <TColStd_Array1OfReal.hxx>
32 #include <Standard_Boolean.hxx>
33 class Geom_Curve;
34 class Standard_OutOfRange;
35 class Standard_NoSuchObject;
36 class Standard_DomainError;
37 class TopoDS_Edge;
38 class gp_Pnt;
39 class gp_Vec;
40 class gp_Lin;
41 class gp_Circ;
42 class gp_Elips;
43 class gp_Hypr;
44 class gp_Parab;
45 class Geom_BezierCurve;
46 class Geom_BSplineCurve;
47
48 DEFINE_STANDARD_HANDLE(BiTgte_CurveOnEdge, Adaptor3d_Curve)
49
50 //! private class used  to create a filler rolling  on
51 //! an edge.
52 class BiTgte_CurveOnEdge  : public Adaptor3d_Curve
53 {
54   DEFINE_STANDARD_RTTIEXT(BiTgte_CurveOnEdge, Adaptor3d_Curve)
55 public:
56   
57   Standard_EXPORT BiTgte_CurveOnEdge();
58   
59   Standard_EXPORT BiTgte_CurveOnEdge(const TopoDS_Edge& EonF, const TopoDS_Edge& Edge);
60
61   //! Shallow copy of adaptor
62   Standard_EXPORT virtual Handle(Adaptor3d_Curve) ShallowCopy() const Standard_OVERRIDE;
63   
64   Standard_EXPORT void Init (const TopoDS_Edge& EonF, const TopoDS_Edge& Edge);
65   
66   Standard_EXPORT Standard_Real FirstParameter() const Standard_OVERRIDE;
67   
68   Standard_EXPORT Standard_Real LastParameter() const Standard_OVERRIDE;
69   
70   Standard_EXPORT GeomAbs_Shape Continuity() const Standard_OVERRIDE;
71   
72   //! Returns  the number  of  intervals for  continuity
73   //! <S>. May be one if Continuity(me) >= <S>
74   Standard_EXPORT Standard_Integer NbIntervals (const GeomAbs_Shape S) const Standard_OVERRIDE;
75   
76   //! Stores in <T> the  parameters bounding the intervals
77   //! of continuity <S>.
78   //!
79   //! The array must provide  enough room to  accommodate
80   //! for the parameters. i.e. T.Length() > NbIntervals()
81   Standard_EXPORT void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const Standard_OVERRIDE;
82   
83   //! Returns    a  curve equivalent   of  <me>  between
84   //! parameters <First>  and <Last>. <Tol>  is used  to
85   //! test for 3d points confusion.
86   //! If <First> >= <Last>
87   Standard_EXPORT Handle(Adaptor3d_Curve) Trim (const Standard_Real First, const Standard_Real Last, const Standard_Real Tol) const Standard_OVERRIDE;
88   
89   Standard_EXPORT Standard_Boolean IsClosed() const Standard_OVERRIDE;
90   
91   Standard_EXPORT Standard_Boolean IsPeriodic() const Standard_OVERRIDE;
92   
93   Standard_EXPORT Standard_Real Period() const Standard_OVERRIDE;
94   
95   //! Computes the point of parameter U on the curve.
96   Standard_EXPORT gp_Pnt Value (const Standard_Real U) const Standard_OVERRIDE;
97   
98   //! Computes the point of parameter U on the curve.
99   Standard_EXPORT void D0 (const Standard_Real U, gp_Pnt& P) const Standard_OVERRIDE;
100   
101   //! Computes the point of parameter U on the curve with its
102   //! first derivative.
103   //! Raised if the continuity of the current interval
104   //! is not C1.
105   Standard_EXPORT void D1 (const Standard_Real U, gp_Pnt& P, gp_Vec& V) const Standard_OVERRIDE;
106   
107
108   //! Returns the point P of parameter U, the first and second
109   //! derivatives V1 and V2.
110   //! Raised if the continuity of the current interval
111   //! is not C2.
112   Standard_EXPORT void D2 (const Standard_Real U, gp_Pnt& P, gp_Vec& V1, gp_Vec& V2) const Standard_OVERRIDE;
113   
114
115   //! Returns the point P of parameter U, the first, the second
116   //! and the third derivative.
117   //! Raised if the continuity of the current interval
118   //! is not C3.
119   Standard_EXPORT void D3 (const Standard_Real U, gp_Pnt& P, gp_Vec& V1, gp_Vec& V2, gp_Vec& V3) const Standard_OVERRIDE;
120   
121
122   //! The returned vector gives the value of the derivative for the
123   //! order of derivation N.
124   //! Raised if the continuity of the current interval
125   //! is not CN.
126   //! Raised if N < 1.
127   Standard_EXPORT gp_Vec DN (const Standard_Real U, const Standard_Integer N) const Standard_OVERRIDE;
128   
129   //! Returns the parametric  resolution corresponding
130   //! to the real space resolution <R3d>.
131   Standard_EXPORT Standard_Real Resolution (const Standard_Real R3d) const Standard_OVERRIDE;
132   
133   //! Returns  the  type of the   curve  in the  current
134   //! interval :   Line,   Circle,   Ellipse, Hyperbola,
135   //! Parabola, BezierCurve, BSplineCurve, OtherCurve.
136   Standard_EXPORT GeomAbs_CurveType GetType() const Standard_OVERRIDE;
137   
138   Standard_EXPORT gp_Lin Line() const Standard_OVERRIDE;
139   
140   Standard_EXPORT gp_Circ Circle() const Standard_OVERRIDE;
141   
142   Standard_EXPORT gp_Elips Ellipse() const Standard_OVERRIDE;
143   
144   Standard_EXPORT gp_Hypr Hyperbola() const Standard_OVERRIDE;
145   
146   Standard_EXPORT gp_Parab Parabola() const Standard_OVERRIDE;
147   
148   Standard_EXPORT Standard_Integer Degree() const Standard_OVERRIDE;
149   
150   Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE;
151   
152   Standard_EXPORT Standard_Integer NbPoles() const Standard_OVERRIDE;
153   
154   Standard_EXPORT Standard_Integer NbKnots() const Standard_OVERRIDE;
155   
156   Standard_EXPORT Handle(Geom_BezierCurve) Bezier() const Standard_OVERRIDE;
157   
158   Standard_EXPORT Handle(Geom_BSplineCurve) BSpline() const Standard_OVERRIDE;
159
160 private:
161
162   TopoDS_Edge myEdge;
163   TopoDS_Edge myEonF;
164   Handle(Geom_Curve) myCurv;
165   Handle(Geom_Curve) myConF;
166   GeomAbs_CurveType myType;
167   gp_Circ myCirc;
168
169 };
170
171 #endif // _BiTgte_CurveOnEdge_HeaderFile