]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Face.hs
src/Face.hs: don't import "Point" type members.
[spline3.git] / src / Face.hs
index 785acafef9bfdc92b4eea5ef1cfa4b0f3deea870..de24a43e6c1cd72afb2c88b79507a38c7a48640e 100644 (file)
@@ -1,12 +1,12 @@
 -- | The Face module just contains the definition of the 'Face' data
 --   type and its two typeclass instances.
+--
 module Face (
   Face(..),
-  center
-  )
+  center )
 where
 
-import Point
+import Point ( Point, scale )
 
 data Face = Face { v0 :: !Point,
                    v1 :: !Point,