]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Add bang patterns to the definition of Face (Ben Lippmeier).
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 25 Oct 2011 03:55:02 +0000 (23:55 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 25 Oct 2011 03:55:02 +0000 (23:55 -0400)
src/Face.hs

index 96092609fc55f99cc86459ebf787f26594efff1f..bc316a72cee9ae4eb815424b2ccbfe8705316911 100644 (file)
@@ -7,10 +7,10 @@ where
 import Point
 import ThreeDimensional
 
-data Face = Face { v0 :: Point,
-                   v1 :: Point,
-                   v2 :: Point,
-                   v3 :: Point }
+data Face = Face { v0 :: !Point,
+                   v1 :: !Point,
+                   v2 :: !Point,
+                   v3 :: !Point }
           deriving (Eq)
 
 instance Show Face where