Salome HOME
Correct misprint
[modules/shaper.git] / src / SketchSolver / PlaneGCSSolver / PlaneGCSSolver_AngleWrapper.cpp
index 2bcf426597838c76b46ff37039e625378a2153c8..0bd5f58a295943bc4a12b35985e04361127da7c5 100644 (file)
@@ -1,12 +1,26 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:    PlaneGCSSolver_AngleWrapper.cpp
-// Created: 18 Dec 2015
-// Author:  Artem ZHIDKOV
+// Copyright (C) 2014-2017  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
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// 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
+//
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+//
 
 #include <PlaneGCSSolver_AngleWrapper.h>
 
-#include <math.h>
+#include <cmath>
 
 static double deg2rad(double theDegrees)
 {
@@ -19,9 +33,9 @@ static double rad2deg(double theRadians)
 }
 
 PlaneGCSSolver_AngleWrapper::PlaneGCSSolver_AngleWrapper(double *const theParam)
-  : PlaneGCSSolver_ParameterWrapper(theParam)
+  : PlaneGCSSolver_ScalarWrapper(theParam)
 {
-  setValue(*myValue);
+  setValue(*theParam);
 }
 
 void PlaneGCSSolver_AngleWrapper::setValue(double theValue)