X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FCube.hs;h=3f1669b619a5cbbb0ee262bd6b5f63b4c4a24355;hb=f523e553956c11962c25dac6e9521aeb7f13025e;hp=2878eb06b76ffb54c0685de2543457faf3d8db29;hpb=f6d0c289ad3397cf392976c24f3afdb17da5d377;p=spline3.git diff --git a/src/Cube.hs b/src/Cube.hs index 2878eb0..3f1669b 100644 --- a/src/Cube.hs +++ b/src/Cube.hs @@ -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 @@ -283,7 +283,7 @@ tetrahedron8 c = v1' = center (back_face c) v2' = Face.v0 (back_face c) v3' = Face.v1 (back_face c) - fv' = rotate cwy $ rotate cwy $ (Tetrahedron.fv (tetrahedron0 c)) + fv' = rotate cwy $ rotate cwy $ Tetrahedron.fv (tetrahedron0 c) tetrahedron9 :: Cube -> Tetrahedron tetrahedron9 c =