···
SVG node e.g. fill="red", stroke="#ff4477", stroke_width=2. '''
def __init__(self, x, y, width, height, **kwargs):
373
-
super().__init__(x=x, y=-y-height, width=width, height=height,
377
+
super().__init__(x=x, y=y, width=width, height=height,
class Circle(DrawingBasicElement):
···
SVG node e.g. fill="red", stroke="#ff4477", stroke_width=2. '''
def __init__(self, cx, cy, r, **kwargs):
383
-
super().__init__(cx=cx, cy=-cy, r=r, **kwargs)
391
+
super().__init__(cx=cx, cy=cy, r=r, **kwargs)
class Ellipse(DrawingBasicElement):
···
SVG node e.g. fill="red", stroke="#ff4477", stroke_width=2. '''
def __init__(self, cx, cy, rx, ry, **kwargs):
392
-
super().__init__(cx=cx, cy=-cy, rx=rx, ry=ry, **kwargs)
404
+
super().__init__(cx=cx, cy=cy, rx=rx, ry=ry, **kwargs)