UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

13 lines (10 loc) 256 B
export function unwrapAngleDelta(raw: number, prevRaw: number) { const halfTurn = 180; let delta = raw - prevRaw; if (delta > halfTurn) { delta -= halfTurn * 2; } else if (delta < -halfTurn) { delta += halfTurn * 2; } return delta; }