export const roundToNearestQuarter = (n: number): number => { return Math.round(n / 0.25) * 0.25; };