瀏覽代碼

Code tweaks

pull/897/head
Ray 5 年之前
父節點
當前提交
e36a80f730
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      src/shapes.c

+ 3
- 2
src/shapes.c 查看文件

@ -1474,9 +1474,10 @@ Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
// NOTE: Required for DrawLineBezier()
static float EaseCubicInOut(float t, float b, float c, float d)
{
if ((t /= 0.5f*d) < 1)
return 0.5f*c*t*t*t + b;
if ((t /= 0.5f*d) < 1) return 0.5f*c*t*t*t + b;
t -= 2;
return 0.5f*c*(t*t*t + 2.0f) + b;
}

Loading…
取消
儲存