]> gitweb.michael.orlitzky.com - spline3.git/blob - src/ThreeDimensional.hs
Replace the 'find_containing_tetrahedra' function with a more-efficient 'find_contain...
[spline3.git] / src / ThreeDimensional.hs
1 module ThreeDimensional
2 where
3
4 import Point(Point)
5
6 class ThreeDimensional a where
7 center :: a -> Point
8 contains_point :: a -> Point -> Bool