Sets the circle position. Args: x (int): the x coordinate y (int): the y coordinate
(self, x, y)
| 4667 | self.attr_r = radius |
| 4668 | |
| 4669 | def set_position(self, x, y): |
| 4670 | """Sets the circle position. |
| 4671 | |
| 4672 | Args: |
| 4673 | x (int): the x coordinate |
| 4674 | y (int): the y coordinate |
| 4675 | """ |
| 4676 | self.attr_cx = str(x) |
| 4677 | self.attr_cy = str(y) |
| 4678 | |
| 4679 | |
| 4680 | class SvgEllipse(Widget, _MixinSvgStroke, _MixinSvgFill, _MixinTransformable): |
no outgoing calls
no test coverage detected