Difference between revisions of "Igis-Ellipses"

From Coder Merlin
Line 12: Line 12:
         canvas.paint(rotatedEllipse)
         canvas.paint(rotatedEllipse)
</syntaxhighlight>
</syntaxhighlight>
[[File:Igis-Ellipse-rotated.png]]

Revision as of 19:56, 13 January 2019

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.paint(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.paint(rotatedEllipse)

Igis-Ellipse-rotated.png