blob: 1e4b1f92fbbf9cae4f599bae7222199a1452df64 (
plain)
1
2
3
4
5
6
7
|
/*
* Project-wide globals
*/
export const MIN_DATE = -1000;
export const MAX_DATE = 1000;
export const SCALES = [200, 50, 10, 1, 0.2]; // Timeline gets divided into units of SCALES[0], then SCALES[1], etc
|