]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Point.hs
Clean up imports/exports.
[spline3.git] / src / Point.hs
index 95b33640f4e81406f71a685c617a3c273a2a6284..4b9eaece2c88173c7a634899207d877730a99c41 100644 (file)
@@ -1,9 +1,15 @@
 {-# LANGUAGE FlexibleInstances #-}
 
-module Point
+module Point (
+  Point,
+  distance,
+  dot,
+  is_close,
+  scale
+  )
 where
 
-import Comparisons
+import Comparisons ((~=))
 
 
 type Point = (Double, Double, Double)