Files
blowfish/node_modules/d3-ease/src/cubic.js
Nuno Coração 5fb4bd8083 config redirect
2023-01-29 22:30:24 +00:00

12 lines
210 B
JavaScript

export function cubicIn(t) {
return t * t * t;
}
export function cubicOut(t) {
return --t * t * t + 1;
}
export function cubicInOut(t) {
return ((t *= 2) <= 1 ? t * t * t : (t -= 2) * t * t + 2) / 2;
}