Igis-Ellipses

From Coder Merlin
Revision as of 23:37, 5 December 2019 by Yarsenius (talk | contribs) (Updated syntax)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Ellipse[edit]

let ellipse = Ellipse(center:Point(x:155, y:200), radiusX:120, radiusY:55)                                                                                                                                                                                                                                                                          
canvas.render(ellipse)

Igis-Ellipse-whole.png

Rotated Ellipse[edit]

let rotatedEllipse = Ellipse(center:Point(x:155, y:200), radiusX:120, radiusY:55, rotation (1.0/4.0)*Double.pi)
canvas.render(rotatedEllipse)

Igis-Ellipse-rotated.png

Partial Ellipse[edit]

let partialEllipse = Ellipse(center:Point(x:155, y:200), radiusX:120, radiusY:55, rotation:0.0, startAngle:0.0, endAngle:(3.0/2.0)*Double.pi)
canvas.render(partialEllipse)

Igis-Ellipse-partial.png