ImplicitCAD/Examples/example11.hs
Richard Marko 6d4162e137 Tidy Haskell examples
Both in Examples dir and README.
2020-12-05 10:34:57 +01:00

11 lines
199 B
Haskell

-- Example 11 - the union of a square and a circle.
import Graphics.Implicit
out = union [
squareR 0 True (80, 80)
, translate (40, 40) $ circle 30
]
main = writeSVG 2 "example11.svg" out