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

6 lines
121 B
JavaScript

function velocityPerFrame(xps, frameDuration) {
return xps / (1000 / frameDuration);
}
export { velocityPerFrame };