X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FPoint.hs;h=4b9eaece2c88173c7a634899207d877730a99c41;hb=3f7331f579118687cd73b977ce6aa7d401f88a09;hp=95b33640f4e81406f71a685c617a3c273a2a6284;hpb=cf2126c163fc1cf26175da1c7200a0ec1e3e034d;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)