0028248: [Regression] HLR Algo result is retrieved from the last added shape only
[occt.git] / src / HLRBRep / HLRBRep_BCurveTool.cxx
1 // Created on: 1995-07-17
2 // Created by: Modelistation
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
18 #include <BRepAdaptor_Curve.hxx>
19 #include <Geom_BezierCurve.hxx>
20 #include <Geom_BSplineCurve.hxx>
21 #include <GeomAbs_CurveType.hxx>
22 #include <GeomAbs_Shape.hxx>
23 #include <gp_Pnt.hxx>
24 #include <gp_Vec.hxx>
25 #include <HLRBRep_BCurveTool.hxx>
26 #include <Standard_DomainError.hxx>
27 #include <Standard_NoSuchObject.hxx>
28 #include <Standard_OutOfRange.hxx>
29 #include <TColgp_Array1OfPnt.hxx>
30 #include <TColStd_Array1OfReal.hxx>
31
32 //=======================================================================
33 //function : NbSamples
34 //purpose  : 
35 //=======================================================================
36 Standard_Integer
37 HLRBRep_BCurveTool::NbSamples (const BRepAdaptor_Curve& C,
38                                const Standard_Real U0,
39                                const Standard_Real U1)
40 {
41   GeomAbs_CurveType typC = C.GetType();
42   static Standard_Real nbsOther = 10.0;
43   Standard_Real nbs = nbsOther;
44   
45   if(typC == GeomAbs_Line) 
46     nbs = 2;
47   else if(typC == GeomAbs_BezierCurve) 
48     nbs = 3 + C.NbPoles();
49   else if(typC == GeomAbs_BSplineCurve) { 
50     nbs = C.NbKnots();
51     nbs*= C.Degree();
52     nbs*= C.LastParameter()- C.FirstParameter();
53     nbs/= U1-U0;
54     if(nbs < 2.0) nbs=2;
55   }
56   if(nbs>50)
57     nbs = 50;
58   return((Standard_Integer)nbs);
59 }
60
61 //=======================================================================
62 //function : Poles
63 //purpose  : 
64 //=======================================================================
65
66 void HLRBRep_BCurveTool::Poles(const BRepAdaptor_Curve& C,
67                                TColgp_Array1OfPnt& T)
68
69   if(C.GetType() == GeomAbs_BezierCurve) 
70     C.Bezier()->Poles(T);
71   else if(C.GetType() == GeomAbs_BSplineCurve) 
72     C.BSpline()->Poles(T);
73 }
74
75 //=======================================================================
76 //function : PolesAndWeights
77 //purpose  : 
78 //=======================================================================
79
80 void HLRBRep_BCurveTool::PolesAndWeights(const BRepAdaptor_Curve& C, 
81                                          TColgp_Array1OfPnt& T,
82                                          TColStd_Array1OfReal& W)
83
84   if(C.GetType() == GeomAbs_BezierCurve) {
85     const Handle(Geom_BezierCurve) HB = C.Bezier();
86     HB->Poles(T);
87     HB->Weights(W);
88   }
89   else if(C.GetType() == GeomAbs_BSplineCurve) {
90     const Handle(Geom_BSplineCurve) HB = C.BSpline();
91     HB->Poles(T);
92     HB->Weights(W);
93   }
94 }
95
96 //=======================================================================
97 //function : Bezier
98 //purpose  : 
99 //=======================================================================
100
101 Handle(Geom_BezierCurve)
102      HLRBRep_BCurveTool::Bezier (const BRepAdaptor_Curve& C)
103 { return(C.Bezier()); }
104
105 //=======================================================================
106 //function : BSpline
107 //purpose  : 
108 //=======================================================================
109
110 Handle(Geom_BSplineCurve)
111      HLRBRep_BCurveTool::BSpline (const BRepAdaptor_Curve& C)
112 { return(C.BSpline()); }