1Image.ellipse(3kaya) Kaya module reference Image.ellipse(3kaya)
2
3
4
6 Image::ellipse - Draw an ellipse.
7
9 Void ellipse( Image img, Int cx, Int cy, Int w, Int h, Colour col, Bool
10 filled=false )
11
13 img The image
14
15 cx The X coordinate of the centre of the ellipse
16
17 cy The Y coordinate of the centre of the ellipse
18
19 w The width of the ellipse
20
21 h The height of the ellipse
22
23 col Colour of the ellipse
24
25 filled Whether the ellipse is filled (defaults to false)
26
28 Draw an ellipse at the specified position.
29
31 Kaya standard library by Edwin Brady, Chris Morris and others
32 (kaya@kayalang.org). For further information see http://kayalang.org/
33
35 The Kaya standard library is free software; you can redistribute it
36 and/or modify it under the terms of the GNU Lesser General Public
37 License (version 2.1 or any later version) as published by the Free
38 Software Foundation.
39
41 Image.arc (3kaya)
42 Image.poly (3kaya)
43 Image.rectangle (3kaya)
44
45
46
47Kaya December 2010 Image.ellipse(3kaya)