Salome HOME
updated copyright message
[modules/geom.git] / src / GEOMUtils / GEOMUtils_TrsfCurve2d.hxx
1 // Copyright (C) 2015-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _GEOMUtils_TrsfCurve2d_HXX_
21 #define _GEOMUtils_TrsfCurve2d_HXX_
22
23 #include <GEOMUtils_Trsf2d.hxx>
24
25 #include <Geom2dHatch_Hatcher.hxx>
26 #include <GeomAbs_IsoType.hxx>
27 #include <TColStd_HArray1OfInteger.hxx>
28 #include <TColStd_HArray1OfReal.hxx>
29 #include <TopoDS_Face.hxx>
30
31 #include <Basics_OCCTVersion.hxx>
32
33
34 namespace GEOMUtils
35 {
36   /*!
37    *  This class represents an adaptor curve that represents an original curve
38    *  transformed by an anisotropic transformation.
39    */
40   class TrsfCurve2d : public Adaptor2d_Curve2d
41   {
42 #if OCC_VERSION_LARGE >= 0x07070000
43   DEFINE_STANDARD_RTTIEXT(TrsfCurve2d, Adaptor2d_Curve2d)
44 #endif
45
46   public:
47     
48     /**
49      * Constructor. Initializes the object with the transformation parameters.
50      * Input parameters are not checked for validity. It is under responsibility
51      * of the caller.
52      */
53     Standard_EXPORT TrsfCurve2d(const Handle(Geom2d_Curve) &theCurve,
54                                 const Trsf2d               &theTrsf);
55     
56     /**
57      * Constructor. Initializes the object with the curve, first and last
58      * parameters and transformation. Input parameters are not checked
59      * for validity. It is under responsibility of the caller.
60      */
61     Standard_EXPORT TrsfCurve2d(const Handle(Geom2d_Curve) &theCurve,
62                                 const Standard_Real         theUFirst,
63                                 const Standard_Real         theULast,
64                                 const Trsf2d               &theTrsf);
65
66     /**
67      * Redefined method from the base class.
68      */
69     Standard_EXPORT Standard_Real FirstParameter() const;
70
71     /**
72      * Redefined method from the base class.
73      */
74     Standard_EXPORT Standard_Real LastParameter() const;
75
76     /**
77      * Redefined method from the base class.
78      */
79     Standard_EXPORT const Handle(Geom2d_Curve)& Curve() const;
80
81     /**
82      * Redefined method from the base class.
83      */
84     Standard_EXPORT GeomAbs_CurveType GetType() const;
85
86     /**
87      * Redefined method from the base class.
88      */
89     Standard_EXPORT void Load(const Handle(Geom2d_Curve) &C);
90
91     /**
92      * Redefined method from the base class.
93      */
94     Standard_EXPORT void Load(const Handle(Geom2d_Curve) &C,
95                               const Standard_Real         UFirst,
96                               const Standard_Real         ULast);
97
98     /**
99      * Redefined method from the base class.
100      */
101     Standard_EXPORT GeomAbs_Shape Continuity() const;
102
103     /**
104      * Redefined method from the base class.
105      */
106     Standard_EXPORT Standard_Integer NbIntervals(const GeomAbs_Shape S) const;
107
108     /**
109      * Redefined method from the base class.
110      */
111     Standard_EXPORT void Intervals(TColStd_Array1OfReal &T,
112                                    const GeomAbs_Shape   S) const;
113
114     /**
115      * Redefined method from the base class.
116      */
117 #if OCC_VERSION_LARGE < 0x07070000
118     Standard_EXPORT Handle(Adaptor2d_HCurve2d) Trim
119 #else
120     Standard_EXPORT Handle(Adaptor2d_Curve2d) Trim
121 #endif
122               (const Standard_Real First, const Standard_Real Last,
123                const Standard_Real ) const;
124
125     /**
126      * Redefined method from the base class.
127      */
128     Standard_EXPORT Standard_Boolean IsClosed() const;
129
130     /**
131      * Redefined method from the base class.
132      */
133     Standard_EXPORT Standard_Boolean IsPeriodic() const;
134
135     /**
136      * Redefined method from the base class.
137      */
138     Standard_EXPORT Standard_Real Period() const;
139
140     /**
141      * Redefined method from the base class.
142      */
143     Standard_EXPORT gp_Pnt2d Value(const Standard_Real U) const;
144
145     /**
146      * Redefined method from the base class.
147      */
148     Standard_EXPORT void D0(const Standard_Real U, gp_Pnt2d &P) const;
149
150     /**
151      * Redefined method from the base class.
152      */
153     Standard_EXPORT void D1(const Standard_Real U,
154                             gp_Pnt2d &P, gp_Vec2d &V) const;
155
156     /**
157      * Redefined method from the base class.
158      */
159     Standard_EXPORT void D2(const Standard_Real U, gp_Pnt2d &P,
160                             gp_Vec2d &V1, gp_Vec2d &V2) const;
161
162     /**
163      * Redefined method from the base class.
164      */
165     Standard_EXPORT void D3(const Standard_Real U, gp_Pnt2d &P,
166                             gp_Vec2d &V1, gp_Vec2d &V2, gp_Vec2d &V3) const;
167
168     /**
169      * Redefined method from the base class.
170      */
171     Standard_EXPORT gp_Vec2d DN(const Standard_Real    U,
172                                 const Standard_Integer N) const;
173
174     /**
175      * Redefined method from the base class.
176      */
177     Standard_EXPORT Standard_Real Resolution(const Standard_Real Ruv) const;
178
179     /**
180      * Redefined method from the base class.
181      */
182     Standard_EXPORT gp_Lin2d Line() const;
183
184     /**
185      * Redefined method from the base class.
186      */
187     Standard_EXPORT gp_Circ2d  Circle() const;
188
189     /**
190      * Redefined method from the base class.
191      */
192     Standard_EXPORT gp_Elips2d Ellipse() const;
193
194     /**
195      * Redefined method from the base class.
196      */
197     Standard_EXPORT gp_Hypr2d Hyperbola() const;
198
199     /**
200      * Redefined method from the base class.
201      */
202     Standard_EXPORT gp_Parab2d Parabola() const;
203
204     /**
205      * Redefined method from the base class.
206      */
207     Standard_EXPORT Standard_Integer Degree() const;
208
209     /**
210      * Redefined method from the base class.
211      */
212     Standard_EXPORT Standard_Boolean IsRational() const;
213
214     /**
215      * Redefined method from the base class.
216      */
217     Standard_EXPORT Standard_Integer NbPoles() const;
218
219     /**
220      * Redefined method from the base class.
221      */
222     Standard_EXPORT Standard_Integer NbKnots() const;
223
224     /**
225      * Redefined method from the base class.
226      */
227     Standard_EXPORT Handle(Geom2d_BezierCurve) Bezier() const;
228
229     /**
230      * Redefined method from the base class.
231      */
232     Standard_EXPORT Handle(Geom2d_BSplineCurve) BSpline() const;
233
234     /**
235      * Redefined method from the base class.
236      */
237     Standard_EXPORT Standard_Integer NbSamples() const;
238
239   private:
240
241     Geom2dAdaptor_Curve myCurve;
242     Trsf2d              myTrsf;
243
244   };
245
246 #if OCC_VERSION_LARGE >= 0x07070000
247   DEFINE_STANDARD_HANDLE(TrsfCurve2d, Adaptor2d_Curve2d)
248 #endif
249
250 }
251
252 #endif