X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FPoint.hs;h=2b8d59736e28e91a5ce1cc9104e5c131305db3c6;hb=603d9155a29bfbc353b42a6c880edce224626a16;hp=a92041e89845147f31af704f53613383c4244ee6;hpb=a7f5c0b286ba29cdd586f418638e9ab4a406bf97;p=spline3.git diff --git a/src/Point.hs b/src/Point.hs index a92041e..2b8d597 100644 --- a/src/Point.hs +++ b/src/Point.hs @@ -8,15 +8,6 @@ import Comparisons type Point = (Double, Double, Double) -x_coord :: Point -> Double -x_coord (x, _, _) = x - -y_coord :: Point -> Double -y_coord (_, y, _) = y - -z_coord :: Point -> Double -z_coord (_, _, z) = z - instance Num Point where (x1,y1,z1) + (x2,y2,z2) = (x1+x2, y1+y2, z1+z2) (x1,y1,z1) - (x2,y2,z2) = (x1-x2, y1-y2, z1-z2) @@ -33,15 +24,8 @@ scale (x, y, z) d = (x*d, y*d, z*d) -- | Returns the distance between p1 and p2. distance :: Point -> Point -> Double -distance p1 p2 = +distance (x1, y1, z1) (x2, y2, z2) = sqrt $ (x2 - x1)^(2::Int) + (y2 - y1)^(2::Int) + (z2 - z1)^(2::Int) - where - x1 = x_coord p1 - x2 = x_coord p2 - y1 = y_coord p1 - y2 = y_coord p2 - z1 = z_coord p1 - z2 = z_coord p2 -- | Returns 'True' if p1 is close to (within 'epsilon' of) p2,