Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/intern/math_base_inline.c')
-rw-r--r--source/blender/blenlib/intern/math_base_inline.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/intern/math_base_inline.c b/source/blender/blenlib/intern/math_base_inline.c
index 90a91cbe26f..bb6bc0db00d 100644
--- a/source/blender/blenlib/intern/math_base_inline.c
+++ b/source/blender/blenlib/intern/math_base_inline.c
@@ -95,10 +95,10 @@ MINLINE float saacos(float fac)
MINLINE float saasin(float fac)
{
if (UNLIKELY(fac <= -1.0f)) {
- return (float)-M_PI / 2.0f;
+ return (float)-M_PI_2;
}
else if (UNLIKELY(fac >= 1.0f)) {
- return (float)M_PI / 2.0f;
+ return (float)M_PI_2;
}
else {
return asinf(fac);
@@ -131,10 +131,10 @@ MINLINE float saacosf(float fac)
MINLINE float saasinf(float fac)
{
if (UNLIKELY(fac <= -1.0f)) {
- return (float)-M_PI / 2.0f;
+ return (float)-M_PI_2;
}
else if (UNLIKELY(fac >= 1.0f)) {
- return (float)M_PI / 2.0f;
+ return (float)M_PI_2;
}
else {
return asinf(fac);