X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FCardinal.hs;h=9bd8e1df933b592d877d2e1efe810b44d96092ac;hb=26f0a2204a0bdb41b1d6aa5430544c404b77e638;hp=9a5d025efa9c43537aba416491b4fb10fa8e2494;hpb=f07f76b231a3df623aab8b6035ac6000ce2a5eb2;p=spline3.git diff --git a/src/Cardinal.hs b/src/Cardinal.hs index 9a5d025..9bd8e1d 100644 --- a/src/Cardinal.hs +++ b/src/Cardinal.hs @@ -1,6 +1,6 @@ -- | The Cardinal module contains the Cardinal data type, representing --- a cardinal direction (one of the 27 directions surrounding the --- center of a cube. In addition to those 27 directions, we also +-- a cardinal direction (one of the 26 directions surrounding the +-- 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 @@ -46,7 +46,7 @@ data Cardinal = F -- ^ Front deriving (Show, Eq) --- | By making Cardinal an instance of Num, we gain the ability to +-- | By making Cardinal an instance of 'Num', we gain the ability to -- add, subtract, and multiply directions. The results of these -- operations are never actually calculated; the types just keep -- track of which operations were performed in which order. @@ -60,7 +60,7 @@ instance Num Cardinal where fromInteger x = Scalar (fromIntegral x) --- | Like the Num instance, the Fractional instance allows us to +-- | Like the Num instance, the 'Fractional' instance allows us to -- take quotients of directions. instance Fractional Cardinal where x / y = Quotient x y