4 lines
144 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
export function velocityPerFrame(xps, frameDuration) {
return xps / (1000 / frameDuration);
}
//# sourceMappingURL=velocity-per-frame.js.map