From: Michael Orlitzky Date: Thu, 16 Apr 2015 01:03:34 +0000 (-0400) Subject: Define an export list in Cardinal. X-Git-Tag: 0.0.1~21 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=380f69c2f37dc154c6f908fb893beb4bb1b185a6 Define an export list in Cardinal. --- diff --git a/src/Cardinal.hs b/src/Cardinal.hs index 031dfc2..300c340 100644 --- a/src/Cardinal.hs +++ b/src/Cardinal.hs @@ -9,7 +9,17 @@ -- center of a cube. In addition to those 26 directions, we also -- include the interior point and a number of composite types that -- allow us to perform arithmetic on directions. -module Cardinal +-- +module Cardinal ( + Cardinal(..), + cardinal_properties, + cardinal_tests, + ccwx, + ccwy, + ccwz, + cwx, + cwy, + cwz ) where import Control.Monad (liftM, liftM2)