summaryrefslogtreecommitdiffstats
path: root/thirdparty/thorvg/src/common/tvgLines.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/thorvg/src/common/tvgLines.cpp')
-rw-r--r--thirdparty/thorvg/src/common/tvgLines.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/thorvg/src/common/tvgLines.cpp b/thirdparty/thorvg/src/common/tvgLines.cpp
index da48f9eae2..9d704900a5 100644
--- a/thirdparty/thorvg/src/common/tvgLines.cpp
+++ b/thirdparty/thorvg/src/common/tvgLines.cpp
@@ -238,7 +238,7 @@ float bezAngleAt(const Bezier& bz, float t)
pt.x *= 3;
pt.y *= 3;
- return mathRad2Deg(atan2(pt.x, pt.y));
+ return mathRad2Deg(mathAtan2(pt.y, pt.x));
}