Draws an ellipse at (x, y) with given fill and stroke color and stroke width.
(x, y, width, height, fill=(0,0,0,1), stroke=None, strokewidth=1)
| 34 | pass |
| 35 | |
| 36 | def ellipse(x, y, width, height, fill=(0,0,0,1), stroke=None, strokewidth=1): |
| 37 | """ Draws an ellipse at (x, y) with given fill and stroke color and stroke width. |
| 38 | """ |
| 39 | pass |
| 40 | |
| 41 | class Text(object): |
| 42 | def __init__(self, string, **kwargs): |
no outgoing calls
no test coverage detected
searching dependent graphs…