(self)
| 141 | (self.center_x, self.center_y), self.radius) |
| 142 | |
| 143 | def reset(self) -> None: |
| 144 | self.speed_x = 0 |
| 145 | self.speed_y = 0 |
| 146 | self.center_x = self.display_width / 2 |
| 147 | self.center_y = self.display_high / 2 |
| 148 | self.draw(self.surface) |
| 149 | |
| 150 | def get_borders(self) -> dict: |
| 151 | return { |