goocanvas.Rect — A rectangle item.
class goocanvas.Rect(goocanvas.ItemSimple): |
+-- gobject.GObject +-- goocanvas.ItemSimple +-- goocanvas.Rect
|
goocanvas.Rect implements goocanvas.Item
goocanvas.Rect(properties=None)
properties : | A comma separated list of properties. |
Returns : | A new goocanvas.Rect |
Creates a new canvas rect item.
Here's an example showing how to create a rectangle at (100,100) with a width of 200 and a height of 100.
rect = goocanvas.Rect(x=100, y=100, width=200, height=100, stroke_color="red", fill_color="blue", line_width=5.0)