]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Cube.hs
Remove the x_coord, y_coord, and z_coord functions from Point.
[spline3.git] / src / Cube.hs
index 2878eb06b76ffb54c0685de2543457faf3d8db29..6263d2e32a331ffe971b61ba78eed466fd71c04d 100644 (file)
@@ -116,13 +116,13 @@ instance ThreeDimensional Cube where
 
     -- | It's easy to tell if a point is within a cube; just make sure
     --   that it falls on the proper side of each of the cube's faces.
-    contains_point c p
-        | (x_coord p) < (xmin c) = False
-        | (x_coord p) > (xmax c) = False
-        | (y_coord p) < (ymin c) = False
-        | (y_coord p) > (ymax c) = False
-        | (z_coord p) < (zmin c) = False
-        | (z_coord p) > (zmax c) = False
+    contains_point c (x, y, z)
+        | x < (xmin c) = False
+        | x > (xmax c) = False
+        | y < (ymin c) = False
+        | y > (ymax c) = False
+        | z < (zmin c) = False
+        | z > (zmax c) = False
         | otherwise = True