From 7d9913abf931dcbfe553c2cd872b604e5bbeafc0 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 4 Mar 2019 19:32:51 -0500 Subject: [PATCH] src/Volumetric.hs: fix whitespace alignment of an "equals" sign. --- src/Volumetric.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Volumetric.hs b/src/Volumetric.hs index 5b24760..64669fe 100644 --- a/src/Volumetric.hs +++ b/src/Volumetric.hs @@ -70,7 +70,7 @@ bracket :: Double -> Double -> Double -> Word16 bracket lower_threshold upper_threshold x | x < lower_threshold = 0 | x > upper_threshold = 255 - | otherwise = truncate (r * 255) + | otherwise = truncate (r * 255) where numerator = x - lower_threshold denominator = upper_threshold - lower_threshold -- 2.43.2