Skip to content
This repository has been archived by the owner on Sep 9, 2019. It is now read-only.

Commit

Permalink
Adding import back in
Browse files Browse the repository at this point in the history
  • Loading branch information
mmachenry committed Dec 26, 2015
1 parent 26b8522 commit 7d16ef6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Text/Blaze/Svg/Internal.hs
Expand Up @@ -2,6 +2,8 @@
module Text.Blaze.Svg.Internal where

import Control.Monad.State
import Data.Monoid (mappend, mempty)

import Text.Blaze

-- | Type to represent an SVG document fragment.
Expand Down Expand Up @@ -185,7 +187,7 @@ tr x y = appendToPath
]

-- | Elliptical Arc (absolute)
a
aAbs
:: Show a
=> a -- ^ Radius in the x-direction
-> a -- ^ Radius in the y-direction
Expand All @@ -195,7 +197,7 @@ a
-> a -- ^ The x-coordinate of the end point
-> a -- ^ The y-coordinate of the end point
-> Path
a rx ry xAxisRotation largeArcFlag sweepFlag x y = appendToPath
aAbs rx ry xAxisRotation largeArcFlag sweepFlag x y = appendToPath
[ "A "
, show rx, ",", show ry, " "
, show xAxisRotation, " "
Expand Down

0 comments on commit 7d16ef6

Please sign in to comment.