]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Porting to OCCT development version: Standard_PI -> M_PI
authorjfa <jfa@opencascade.com>
Thu, 22 Dec 2011 12:45:26 +0000 (12:45 +0000)
committerjfa <jfa@opencascade.com>
Thu, 22 Dec 2011 12:45:26 +0000 (12:45 +0000)
src/OCCViewer/OCCViewer_ViewPort3d.cxx

index 7c4cda7e43c87ba762d51892712a4ee6f2f2bb12..1480975416a225b9708bef2f4ea8a34f08f2c5da 100755 (executable)
@@ -474,8 +474,8 @@ void OCCViewer_ViewPort3d::rotate( int x, int y,
         dx = dy = 0.;
       }
       else {
-        dx = (Standard_Real(x) - sx) * Standard_PI/rx;
-        dy = (sy - Standard_Real(y)) * Standard_PI/ry;
+        dx = (Standard_Real(x) - sx) * M_PI/rx;
+        dy = (sy - Standard_Real(y)) * M_PI/ry;
         dz = 0.;
       }
       
@@ -583,7 +583,7 @@ void OCCViewer_ViewPort3d::rotateXY( double degrees )
   int x = width()/2, y = height()/2;
   double X, Y, Z;
   activeView()->Convert( x, y, X, Y, Z );
-  activeView()->Rotate( 0, 0, degrees * Standard_PI180, X, Y, Z );
+  activeView()->Rotate( 0, 0, degrees * M_PI / 180., X, Y, Z );
   emit vpTransformed( this );
 }