cdeca87d103eef39064e4126ef7d145909b455fa
[occt.git] / src / Geom2dInt / Geom2dInt_Geom2dCurveTool.cxx
1 // Created on: 1992-10-22
2 // Created by: Laurent BUCHARD
3 // Copyright (c) 1992-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 <Adaptor2d_Curve2d.hxx>
19 #include <Geom2d_BezierCurve.hxx>
20 #include <Geom2d_BSplineCurve.hxx>
21 #include <Geom2dInt_Geom2dCurveTool.hxx>
22 #include <GeomAbs_CurveType.hxx>
23 #include <gp_Pnt2d.hxx>
24 #include <gp_Vec2d.hxx>
25
26 //============================================================
27 Standard_Integer Geom2dInt_Geom2dCurveTool::NbSamples (const Adaptor2d_Curve2d& C,
28                                                        const Standard_Real U0,
29                                                        const Standard_Real U1)
30 {
31   GeomAbs_CurveType typC = C.GetType();
32   Standard_Integer nbs = C.NbSamples();
33
34   if(typC == GeomAbs_BSplineCurve)
35   {
36     Standard_Real t = C.LastParameter() - C.FirstParameter();
37     Standard_Real t1 = U1 - U0;
38     if(t1 < 0.0) t1 = -t1;
39     nbs = C.NbKnots();
40     nbs*= C.Degree();
41     Standard_Real anb = t1 / t * nbs;
42     nbs = (Standard_Integer)anb;
43
44     Standard_Integer aMinPntNb = Max(C.Degree() + 1, 4);
45     if(nbs < aMinPntNb)
46       nbs = aMinPntNb;
47   }
48   else if (typC == GeomAbs_Circle)
49   {
50     //Try to reach deflection = eps*R, eps = 0.01
51     const Standard_Real minR = 1.; //eps = 0.01
52     Standard_Real R = C.Circle().Radius();
53     if(R > minR)
54     {
55       Standard_Real angl = 0.283079; //2.*ACos(1. - eps);
56       Standard_Integer n = RealToInt(Abs(U1 - U0) / angl);
57       nbs = Max(n, nbs);
58     }
59   }
60
61   if(nbs>300)
62     nbs = 300;
63   return nbs;
64
65 }
66 //============================================================
67 Standard_Integer Geom2dInt_Geom2dCurveTool::NbSamples (const Adaptor2d_Curve2d& C) { 
68   Standard_Integer nbs = C.NbSamples();
69   GeomAbs_CurveType typC = C.GetType();
70   if (typC == GeomAbs_Circle)
71   {
72     //Try to reach deflection = eps*R, eps = 0.01
73     const Standard_Real minR = 1.; //eps = 0.01
74     Standard_Real R = C.Circle().Radius();
75     if(R > minR)
76     {
77       Standard_Real angl = 0.283079; //2.*ACos(1. - eps);
78       Standard_Integer n = RealToInt((C.LastParameter()-C.FirstParameter()) / angl);
79       nbs = Max(n, nbs);
80     }
81   }
82
83   return nbs;
84  }
85
86
87
88