module Point
where
+import Comparisons
+
+
type Point = (Double, Double, Double)
x_coord :: Point -> Double
scale :: Point -> Double -> Point
scale (x, y, z) d = (x*d, y*d, z*d)
+
+
+distance :: Point -> Point -> Double
+distance p1 p2 =
+ 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
+
+
+is_close :: Point -> Point -> Bool
+is_close p1 p2 = (distance p1 p2) ~= 0