floorTo(value, place, base) → {number}
wrap(value, min, max) → {number} Ensures that the value always stays between min and max, by wrapping
percent(a, b, base) → {number} Work out what percentage value a
snapToCeil(input, gap, start) → {number} Snap a value to nearest grid
wrapAngle(angle, radians) → {number} Keeps an angle value between
angleBetweenPointsY(point1, point2) → {number} Find the angle of a segment from (point1.x, point1
clamp(v, min, max) → {number} Force a value within the boundaries by clamping it to the range min
snapTo(input, gap, start) → {number} Snap a value to nearest grid
angleBetween(x1, y1, x2, y2) → {number} Find the angle of a segment from (x1, y1) -> (x2, y2)
max() → {number} Variation of Math.max that can be passed either an array of numbers or the numbers
Page 4 of 6