Fix bug, add some whitespace

This commit is contained in:
Ahmad Fatoum 2017-10-13 13:55:01 +02:00 committed by GitHub
parent cd6d752217
commit 107294f3e6

View File

@ -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;
}