UNPKG
@drozdik.m/lerp
Version:
latest (1.0.1)
1.0.1
1.0.0
Collection of lerp functions.
github.com/drozdik-m/js-alpha-library
drozdik-m/js-alpha-library
@drozdik.m/lerp
/
dist
/
EaseInCirc.js
6 lines
(5 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
exports
.
__esModule
=
true
;
exports
.
EaseInCirc
=
function
(
from
, to, currentFrame, totalFrames
) { currentFrame /= totalFrames;
return
-(to -
from
) * (
Math
.
sqrt
(
1
- currentFrame * currentFrame) -
1
) +
from
; };