X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FPoint.hs;h=4b9eaece2c88173c7a634899207d877730a99c41;hb=cc42825a4df8226f217e59e852950c36c0ec67ba;hp=95b33640f4e81406f71a685c617a3c273a2a6284;hpb=8e58ac52086db8eedb3d929ddc9b6aa885b67f3f;p=spline3.git diff --git a/src/Point.hs b/src/Point.hs index 95b3364..4b9eaec 100644 --- a/src/Point.hs +++ b/src/Point.hs @@ -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)