[Top]
Image
|
Method Image.filled_circle()
- Method
filled_circle
-
object(Image.Image) Image.filled_circle(int d)
object(Image.Image) Image.filled_circle(int xd, int yd)
object(Image.Layer) Image.filled_circle_layer(int d)
object(Image.Layer) Image.filled_circle_layer(int xd, int yd)
object(Image.Layer) Image.filled_circle_layer(int d, object(Image.Color) color)
object(Image.Layer) Image.filled_circle_layer(int xd, int yd, object(Image.Color) color)
object(Image.Layer) Image.filled_circle_layer(int d, int r, int g, int b)
object(Image.Layer) Image.filled_circle_layer(int xd, int yd, int r, int g, int b)
- Description
-
Generates a filled circle of the
dimensions xd x yd (or d x d).
The Image is a white circle on black background; the layer
function defaults to a white circle (the background is transparent).
|