Salome HOME
Fix the unit-tests coverage level
[modules/shaper.git] / src / GeomAPI / GeomAPI_Curve.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
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 #include<GeomAPI_Curve.h>
21 #include<GeomAPI_Pnt.h>
22
23 #include <TopoDS_Shape.hxx>
24 #include <Geom_Circle.hxx>
25 #include <Geom_Curve.hxx>
26 #include <Geom_Line.hxx>
27 #include <Geom_TrimmedCurve.hxx>
28 #include <BRep_Tool.hxx>
29 #include <TopoDS_Edge.hxx>
30 #include <TopoDS.hxx>
31 #include <GeomAdaptor_Curve.hxx>
32
33 #define MY_CURVE (*(implPtr<Handle_Geom_Curve>()))
34
35 GeomAPI_Curve::GeomAPI_Curve()
36     : GeomAPI_Interface(new Handle_Geom_Curve()), myStart(0), myEnd(1)
37 {
38 }
39
40 GeomAPI_Curve::GeomAPI_Curve(const std::shared_ptr<GeomAPI_Shape>& theShape)
41   : GeomAPI_Interface(new Handle_Geom_Curve()) // initially it is null
42 {
43   const TopoDS_Shape& aShape = theShape->impl<TopoDS_Shape>();
44   TopoDS_Edge anEdge = TopoDS::Edge(aShape);
45   if (!anEdge.IsNull()) {
46     Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, myStart, myEnd);
47     if (!aCurve.IsNull()) {
48       setImpl(new Handle(Geom_Curve)(aCurve));
49     }
50   }
51 }
52
53 bool GeomAPI_Curve::isNull() const
54 {
55   return MY_CURVE.IsNull() == Standard_True;
56 }
57
58 bool GeomAPI_Curve::isLine() const
59 {
60   return !isNull() && MY_CURVE->DynamicType() == STANDARD_TYPE(Geom_Line);
61 }
62
63 bool GeomAPI_Curve::isCircle() const
64 {
65   return !isNull() && MY_CURVE->DynamicType() == STANDARD_TYPE(Geom_Circle);
66 }
67
68 std::shared_ptr<GeomAPI_Pnt> GeomAPI_Curve::getPoint(double theParam)
69 {
70   GeomAdaptor_Curve aAdaptor(MY_CURVE, myStart, myEnd);
71   gp_Pnt aPnt = aAdaptor.Value(theParam);
72   return std::shared_ptr<GeomAPI_Pnt>(new GeomAPI_Pnt(aPnt.X(), aPnt.Y(), aPnt.Z()));
73 }
74
75 bool GeomAPI_Curve::isEqual(const std::shared_ptr<GeomAPI_Curve>& theOther) const
76 {
77   return MY_CURVE == theOther->impl<Handle_Geom_Curve>();
78 }
79
80 bool GeomAPI_Curve::isTrimmed() const
81 {
82   return !isNull() && MY_CURVE->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve);
83 }
84
85 // unused in the unit tests for now
86 // LCOV_EXCL_START
87 GeomCurvePtr GeomAPI_Curve::basisCurve() const
88 {
89   Handle(Geom_Curve) aCurve = MY_CURVE;
90   if (aCurve->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve))
91     aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve();
92
93   GeomCurvePtr aNewCurve(new GeomAPI_Curve);
94   aNewCurve->setImpl(new Handle(Geom_Curve)(aCurve));
95   return aNewCurve;
96 }
97 // LCOV_EXCL_STOP
98
99 // ================================================================================================
100
101 bool GeomAPI_Curve::Comparator::operator()(const GeomCurvePtr& theCurve1,
102                                            const GeomCurvePtr& theCurve2) const
103 {
104   const Handle(Geom_Curve)& aCurve1 = theCurve1->impl<Handle_Geom_Curve>();
105   const Handle(Geom_Curve)& aCurve2 = theCurve2->impl<Handle_Geom_Curve>();
106   return aCurve1.get() < aCurve2.get();
107 }