]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Cube.hs
Rename "tetrahedrons" to "tetrahedra".
[spline3.git] / src / Cube.hs
index 6941425a82be541635168da6d5af85feb1a070b7..2878eb06b76ffb54c0685de2543457faf3d8db29 100644 (file)
@@ -462,8 +462,8 @@ tetrahedron23 c =
                        $ Tetrahedron.fv (tetrahedron0 c)
 
 
-tetrahedrons :: Cube -> [Tetrahedron]
-tetrahedrons c =
+tetrahedra :: Cube -> [Tetrahedron]
+tetrahedra c =
     [tetrahedron0 c,
      tetrahedron1 c,
      tetrahedron2 c,
@@ -497,4 +497,4 @@ find_containing_tetrahedra c p =
     filter contains_our_point all_tetrahedra
     where
       contains_our_point = flip contains_point p
-      all_tetrahedra = tetrahedrons c
+      all_tetrahedra = tetrahedra c