import { ILerpFunction } from "./ILerpFunction";
export let EaseOutSine : ILerpFunction = function (from: number, to: number, currentFrame: number, totalFrames: number): number
{
return (to - from) * Math.sin(currentFrame / totalFrames * (Math.PI / 2)) + from;
}