From 5cb79e3f86b5328301eabbbc409f254b58ee9bf4 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Fri, 26 Dec 2025 21:17:05 +0100 Subject: Initial build --- src/constants.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/constants.rs (limited to 'src/constants.rs') diff --git a/src/constants.rs b/src/constants.rs new file mode 100644 index 0000000..2292b66 --- /dev/null +++ b/src/constants.rs @@ -0,0 +1,3 @@ +pub const MIN_ZOOM: f64 = 0.1; +pub const MAX_ZOOM: f64 = 2.0; +pub const ZOOM_STEP: f64 = 0.1; -- cgit