mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 09:04:38 +00:00
tabs/space + transcription typofix
This commit is contained in:
parent
d50762cbef
commit
2f5321ddfb
1 changed files with 5 additions and 4 deletions
|
|
@ -297,7 +297,8 @@ inline F32 mEaseInCirc (F32 t, F32 b, F32 c, F32 d)
|
||||||
inline F32 mEaseOutCirc (F32 t, F32 b, F32 c, F32 d)
|
inline F32 mEaseOutCirc (F32 t, F32 b, F32 c, F32 d)
|
||||||
{
|
{
|
||||||
t/=d;
|
t/=d;
|
||||||
return c * mSqrt(1 - (t-1)*t) + b;
|
t--;
|
||||||
|
return c * mSqrt(1 - (t)*t) + b;
|
||||||
};
|
};
|
||||||
|
|
||||||
// circular easing in/out - acceleration until halfway, then deceleration
|
// circular easing in/out - acceleration until halfway, then deceleration
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue