1 2 3 4 5 6 7 8
// Adjustment constants for image manipulation pub const RNG_SEED: u64 = 42; pub const CONTRAST_MID_POINT: f32 = 50.0; pub const VIBRANCE_MAX_CHROMA: f32 = 150.0; // Viewport UI movement constants pub const PAN_AMOUNT_CHARACTERS: u32 = 10; pub const ZOOM_FACTOR: f32 = 1.2;