You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Example 11 - the union of a square and a circle.importGraphics.Implicit
out = union [
squareR 0True (80, 80)
, translate (40, 40) (circle 30)
]
main = writeSVG 2"test.svg" out
squareR is gone and tuples were replaced with V2 or V3 from the linear package:
importGraphics.Implicit
out =
union
[ square True (V28080),
translate (V24040) (circle 30)
]
main = writeSVG 2"test.svg" out
The text was updated successfully, but these errors were encountered:
The readme has:
squareR is gone and tuples were replaced with V2 or V3 from the linear package:
The text was updated successfully, but these errors were encountered: