summaryrefslogtreecommitdiffstats
path: root/thirdparty/thorvg/src/common/tvgMath.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-05 09:53:39 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-05 09:53:39 +0200
commit8de1cf566dc7f997f84ea02425e25b427bfed955 (patch)
treecf3be0d5123a0ebca588a0dee8e7973a8f349863 /thirdparty/thorvg/src/common/tvgMath.h
parentf6a78f83aa4b74aa5cb80ca2e3419448b1998e4f (diff)
downloadredot-engine-8de1cf566dc7f997f84ea02425e25b427bfed955.tar.gz
thorvg: Update to 0.12.10
Diffstat (limited to 'thirdparty/thorvg/src/common/tvgMath.h')
-rw-r--r--thirdparty/thorvg/src/common/tvgMath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/thorvg/src/common/tvgMath.h b/thirdparty/thorvg/src/common/tvgMath.h
index 7f6708262b..32f4e6b7d1 100644
--- a/thirdparty/thorvg/src/common/tvgMath.h
+++ b/thirdparty/thorvg/src/common/tvgMath.h
@@ -70,7 +70,7 @@ static inline bool mathEqual(const Matrix& a, const Matrix& b)
static inline bool mathRightAngle(const Matrix* m)
{
auto radian = fabsf(atan2f(m->e21, m->e11));
- if (radian < FLT_EPSILON || mathEqual(radian, float(M_PI_2)) || mathEqual(radian, float(M_PI))) return true;
+ if (radian < FLT_EPSILON || mathEqual(radian, MATH_PI2) || mathEqual(radian, MATH_PI)) return true;
return false;
}