aboutsummaryrefslogtreecommitdiff
path: root/graphics/transform_tools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/transform_tools.cpp')
-rw-r--r--graphics/transform_tools.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/transform_tools.cpp b/graphics/transform_tools.cpp
index 6e87b6321a..a0617ff236 100644
--- a/graphics/transform_tools.cpp
+++ b/graphics/transform_tools.cpp
@@ -22,12 +22,13 @@
#include "graphics/transform_tools.h"
+#include "common/math.h"
#include <math.h>
namespace Graphics {
FloatPoint TransformTools::transformPoint(FloatPoint point, const float rotate, const Common::Point &zoom, const bool mirrorX, const bool mirrorY) {
- float rotateRad = rotate * M_PI / 180.0f;
+ float rotateRad = Common::deg2rad<float>(rotate);
float x = point.x;
float y = point.y;
x = (x * zoom.x) / kDefaultZoomX;