From e9cbf03f63997c7e47acf80233268812c902b38a Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Tue, 25 Mar 2025 11:52:57 -0600 Subject: [PATCH] Tweaked params --- src/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/types.ts b/src/types.ts index a56fb72..5377d55 100644 --- a/src/types.ts +++ b/src/types.ts @@ -53,11 +53,11 @@ export const CONSTANTS = { }, MOUSE_WHEEL_SAMPLES: 5, NUM_CURVE_POINTS: 5, - STUDY_TARGETS_PER_PRESET: 1, + STUDY_TARGETS_PER_PRESET: 25, PRESETS: { - A: [1, 2, 3, 4, 5], // Linear increase - B: [1, 1.5, 2.5, 4, 6], // Slow start, fast end - C: [3, 2.5, 2, 1.5, 1], // Inverse/decreasing + A: [1, 1, 1, 1, 1], // Control: No zoom acceleration + B: [1, 2, 3, 4, 5], // Linear increase + C: [1, 1.5, 2.5, 4, 6], // Exponential increase D: [1, 3, 4, 3, 1], // Bell curve } as Record, } as const;