Sets the circle radius. Args: radius (int): the circle radius
(self, radius)
| 4659 | self.type = 'circle' |
| 4660 | |
| 4661 | def set_radius(self, radius): |
| 4662 | """Sets the circle radius. |
| 4663 | |
| 4664 | Args: |
| 4665 | radius (int): the circle radius |
| 4666 | """ |
| 4667 | self.attr_r = radius |
| 4668 | |
| 4669 | def set_position(self, x, y): |
| 4670 | """Sets the circle position. |