0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / BRepBlend / BRepBlend_HCurve2dTool.hxx
1 // Created on: 1995-07-17
2 // Created by: Laurent BUCHARD
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 _BRepBlend_HCurve2dTool_HeaderFile
18 #define _BRepBlend_HCurve2dTool_HeaderFile
19
20 #include <Adaptor2d_Curve2d.hxx>
21 #include <GeomAbs_CurveType.hxx>
22 #include <GeomAbs_Shape.hxx>
23 #include <gp_Lin2d.hxx>
24 #include <gp_Circ2d.hxx>
25 #include <gp_Elips2d.hxx>
26 #include <gp_Parab2d.hxx>
27 #include <gp_Pnt2d.hxx>
28 #include <gp_Vec2d.hxx>
29 #include <gp_Hypr2d.hxx>
30 #include <TColStd_Array1OfReal.hxx>
31
32 class BRepBlend_HCurve2dTool 
33 {
34 public:
35
36   DEFINE_STANDARD_ALLOC
37
38   
39     static Standard_Real FirstParameter (const Handle(Adaptor2d_Curve2d)& C);
40   
41     static Standard_Real LastParameter (const Handle(Adaptor2d_Curve2d)& C);
42   
43     static GeomAbs_Shape Continuity (const Handle(Adaptor2d_Curve2d)& C);
44   
45   //! Returns  the number  of  intervals for  continuity
46   //! <S>. May be one if Continuity(myclass) >= <S>
47     static Standard_Integer NbIntervals (const Handle(Adaptor2d_Curve2d)& C, const GeomAbs_Shape S);
48   
49   //! Stores in <T> the  parameters bounding the intervals
50   //! of continuity <S>.
51   //!
52   //! The array must provide  enough room to  accommodate
53   //! for the parameters. i.e. T.Length() > NbIntervals()
54     static void Intervals (const Handle(Adaptor2d_Curve2d)& C, TColStd_Array1OfReal& T, const GeomAbs_Shape S);
55   
56     static Standard_Boolean IsClosed (const Handle(Adaptor2d_Curve2d)& C);
57   
58     static Standard_Boolean IsPeriodic (const Handle(Adaptor2d_Curve2d)& C);
59   
60     static Standard_Real Period (const Handle(Adaptor2d_Curve2d)& C);
61   
62   //! Computes the point of parameter U on the curve.
63     static gp_Pnt2d Value (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U);
64   
65   //! Computes the point of parameter U on the curve.
66     static void D0 (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U, gp_Pnt2d& P);
67   
68   //! Computes the point of parameter U on the curve with its
69   //! first derivative.
70   //! Raised if the continuity of the current interval
71   //! is not C1.
72     static void D1 (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V);
73   
74
75   //! Returns the point P of parameter U, the first and second
76   //! derivatives V1 and V2.
77   //! Raised if the continuity of the current interval
78   //! is not C2.
79     static void D2 (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2);
80   
81
82   //! Returns the point P of parameter U, the first, the second
83   //! and the third derivative.
84   //! Raised if the continuity of the current interval
85   //! is not C3.
86     static void D3 (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2, gp_Vec2d& V3);
87   
88
89   //! The returned vector gives the value of the derivative for the
90   //! order of derivation N.
91   //! Raised if the continuity of the current interval
92   //! is not CN.
93   //! Raised if N < 1.
94     static gp_Vec2d DN (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U, const Standard_Integer N);
95   
96   //! Returns the parametric  resolution corresponding
97   //! to the real space resolution <R3d>.
98     static Standard_Real Resolution (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real R3d);
99   
100   //! Returns  the  type of the   curve  in the  current
101   //! interval :   Line,   Circle,   Ellipse, Hyperbola,
102   //! Parabola, BezierCurve, BSplineCurve, OtherCurve.
103     static GeomAbs_CurveType GetType (const Handle(Adaptor2d_Curve2d)& C);
104   
105     static gp_Lin2d Line (const Handle(Adaptor2d_Curve2d)& C);
106   
107     static gp_Circ2d Circle (const Handle(Adaptor2d_Curve2d)& C);
108   
109     static gp_Elips2d Ellipse (const Handle(Adaptor2d_Curve2d)& C);
110   
111     static gp_Hypr2d Hyperbola (const Handle(Adaptor2d_Curve2d)& C);
112   
113     static gp_Parab2d Parabola (const Handle(Adaptor2d_Curve2d)& C);
114   
115     static Handle(Geom2d_BezierCurve) Bezier (const Handle(Adaptor2d_Curve2d)& C);
116   
117     static Handle(Geom2d_BSplineCurve) BSpline (const Handle(Adaptor2d_Curve2d)& C);
118   
119   Standard_EXPORT static Standard_Integer NbSamples (const Handle(Adaptor2d_Curve2d)& C, const Standard_Real U0, const Standard_Real U1);
120
121
122
123
124 protected:
125
126
127
128
129
130 private:
131
132
133
134
135
136 };
137
138
139 #include <BRepBlend_HCurve2dTool.lxx>
140
141
142
143
144
145 #endif // _BRepBlend_HCurve2dTool_HeaderFile