f1rq.ovh/node_modules/popmotion/dist/es/utils/velocity-per-second.mjs
2025-03-24 22:56:10 +01:00

6 lines
153 B
JavaScript

function velocityPerSecond(velocity, frameDuration) {
return frameDuration ? velocity * (1000 / frameDuration) : 0;
}
export { velocityPerSecond };