Salome HOME
Copyright update 2021
[modules/shaper.git] / src / GeomAPI / GeomAPI_Angle2d.cpp
index 7aa1df7c5267bc2d12e74ad6e951ab1d3c08041f..9d5e9a307289d4e8be34d3547ebdc8dd2ea71702 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2021  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include <GeomAPI_Angle2d.h>
@@ -145,9 +144,7 @@ double GeomAPI_Angle2d::angleRadian()
   ThreePoints2d* anAngle = MY_ANGLE;
   gp_Dir2d aDir1(anAngle->myFirst.XY() - anAngle->myCenter.XY());
   gp_Dir2d aDir2(anAngle->mySecond.XY() - anAngle->myCenter.XY());
-  double aRes = aDir1.Angle(aDir2);
-  if (aRes < 0.0) aRes += 2 * PI;
-  return aRes;
+  return aDir1.Angle(aDir2);
 }
 
 bool GeomAPI_Angle2d::isReversed(int theIndex)