X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FFace.hs;h=bc316a72cee9ae4eb815424b2ccbfe8705316911;hb=71c69c67074e6eb6ce7520739bc729691525b20b;hp=96848cd9f8c669b1045b40e45f1d0ee754e7e53c;hpb=58cf11569acb270995d2de924dda03ef526647e2;p=spline3.git diff --git a/src/Face.hs b/src/Face.hs index 96848cd..bc316a7 100644 --- a/src/Face.hs +++ b/src/Face.hs @@ -1,15 +1,16 @@ -- | The Face module just contains the definition of the 'Face' data -- type and its two typeclass instances. module Face + ( Face(..) ) 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