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

4 lines
176 B
JavaScript

export function velocityPerSecond(velocity, frameDuration) {
return frameDuration ? velocity * (1000 / frameDuration) : 0;
}
//# sourceMappingURL=velocity-per-second.js.map