1
0
Fork 0

Tweaked params

This commit is contained in:
Atridad Lahiji 2025-03-25 11:52:57 -06:00
parent 58d74fe8c7
commit e9cbf03f63
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438

View file

@ -53,11 +53,11 @@ export const CONSTANTS = {
}, },
MOUSE_WHEEL_SAMPLES: 5, MOUSE_WHEEL_SAMPLES: 5,
NUM_CURVE_POINTS: 5, NUM_CURVE_POINTS: 5,
STUDY_TARGETS_PER_PRESET: 1, STUDY_TARGETS_PER_PRESET: 25,
PRESETS: { PRESETS: {
A: [1, 2, 3, 4, 5], // Linear increase A: [1, 1, 1, 1, 1], // Control: No zoom acceleration
B: [1, 1.5, 2.5, 4, 6], // Slow start, fast end B: [1, 2, 3, 4, 5], // Linear increase
C: [3, 2.5, 2, 1.5, 1], // Inverse/decreasing C: [1, 1.5, 2.5, 4, 6], // Exponential increase
D: [1, 3, 4, 3, 1], // Bell curve D: [1, 3, 4, 3, 1], // Bell curve
} as Record<ZoomPreset, number[]>, } as Record<ZoomPreset, number[]>,
} as const; } as const;