]> gitweb.michael.orlitzky.com - spline3.git/blob - src/ThreeDimensional.hs
4b74f184c9da86ee2faad7f82d56a02937820c7a
[spline3.git] / src / ThreeDimensional.hs
1 module ThreeDimensional
2 ( ThreeDimensional(..) )
3 where
4
5 import Point(Point)
6
7 class ThreeDimensional a where
8 center :: a -> Point
9 contains_point :: a -> Point -> Bool