From: Michael Orlitzky Date: Tue, 5 Mar 2019 00:32:51 +0000 (-0500) Subject: src/Volumetric.hs: fix whitespace alignment of an "equals" sign. X-Git-Tag: 1.0.1~50 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=7d9913abf931dcbfe553c2cd872b604e5bbeafc0 src/Volumetric.hs: fix whitespace alignment of an "equals" sign. --- 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