elm has a clap function already

This commit is contained in:
Daniel Barlow 2024-11-14 19:08:49 +00:00
parent 3200a4618f
commit 42d0ff65b8

View File

@ -61,12 +61,6 @@ zoomStep = 8
toZoom : FineZoomLevel -> ZoomLevel
toZoom (FineZoomLevel f) = f // zoomStep
clamp min max val =
if val < min
then min
else if val > max
then max
else val
incZoom : FineZoomLevel -> Int -> FineZoomLevel
incZoom (FineZoomLevel z) delta =