Difference between revisions of "Igis-Lines"

From Coder Merlin
(Created page with "<syntaxhighlight lang="swift"> let lines = Lines(from:Point(x:110, y:150), to:Point(x:200, y:150)) lines.lineTo(Point(x:155, y:250)) lines.lineTo(Point...")
(No difference)

Revision as of 19:05, 13 January 2019

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder
        let lines = Lines(from:Point(x:110, y:150), to:Point(x:200, y:150))
        lines.lineTo(Point(x:155, y:250))
        lines.lineTo(Point(x:110, y:150))
        canvas.paint(lines)