diff options
Diffstat (limited to 'svx/source/engine3d/dragmt3d.cxx')
-rw-r--r-- | svx/source/engine3d/dragmt3d.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/engine3d/dragmt3d.cxx b/svx/source/engine3d/dragmt3d.cxx index 6052a6df9610..dd53fed14666 100644 --- a/svx/source/engine3d/dragmt3d.cxx +++ b/svx/source/engine3d/dragmt3d.cxx @@ -368,8 +368,8 @@ void E3dDragRotate::MoveSdrDrag(const Point& rPnt) } // to radians - fWAngle *= F_PI180; - fHAngle *= F_PI180; + fWAngle = basegfx::deg2rad(fWAngle); + fHAngle = basegfx::deg2rad(fHAngle); // Determine transformation basegfx::B3DHomMatrix aRotMat; |