summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorAhmad Fatoum <[email protected]>2017-10-13 13:55:01 +0200
committerGitHub <[email protected]>2017-10-13 13:55:01 +0200
commit107294f3e64c0b1c5722f736097adb808aa3a83c (patch)
treed59364cd7946ce5992cf2b9217b0a5e66770d865 /src/shapes.c
parentcd6d752217c9ee2af52f55daf1fea73c0da09a84 (diff)
downloadraylib-107294f3e64c0b1c5722f736097adb808aa3a83c.tar.gz
raylib-107294f3e64c0b1c5722f736097adb808aa3a83c.zip
Fix bug, add some whitespace
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/shapes.c b/src/shapes.c
index 63993469..0b34f921 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -682,6 +682,8 @@ Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
// NOTE: Required for DrawLineBezier()
static float EaseCubicInOut(float t, float b, float c, float d)
{
- if ((t/=d/2) < 1) return (c/2*t*t*t + b);
- return (c/2*((t-2)*t*t + 2) + b);
+ if ((t /= 0.5*d) < 1)
+ return 0.5*c*t*t*t + b;
+ t -= 2;
+ return 0.5*c*(t*t*t + 2) + b;
}