Last active
August 29, 2015 14:03
-
-
Save kowey/469b312c4db3cb6772d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE NoMonomorphismRestriction #-} | |
import Diagrams.Prelude | |
import Diagrams.TwoD.Text | |
import Diagrams.Backend.SVG.CmdLine | |
main = mainWith $ d2 ||| (label "Dog" # translateY 1) | |
label :: String -> Diagram B R2 | |
label l = (text l # fontSizeL 1) <> strutX 2 <> strutY 1 | |
d2 :: Diagram B R2 | |
d2 = roundedRect 5 3 0.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment