6 lines
153 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
function velocityPerSecond(velocity, frameDuration) {
return frameDuration ? velocity * (1000 / frameDuration) : 0;
}
export { velocityPerSecond };