浏览代码

Fix bug, add some whitespace

pull/366/head
Ahmad Fatoum 7 年前
committed by GitHub
父节点
当前提交
107294f3e6
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      src/shapes.c

+ 4
- 2
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;
}

||||||
x
 
000:0
正在加载...
取消
保存