Blur+

Blur+

16M Downloads

[Bug] Incorrect `SINE` animation curve

ookkoouu opened this issue ยท 0 comments

commented

The animation function used in SINE is incorrect.

SINE(x -> 1 - cos(x * PI) / 2, x -> sin(x * PI) / 2),

Image

The correct is:
In: 0.5 - cos(x * PI) / 2
Out: 0.5 - cos(x * PI + PI) / 2