draws the ball onto screen.
(self)
| 57 | return self.__yVel |
| 58 | |
| 59 | def draw(self): |
| 60 | """ |
| 61 | draws the ball onto screen. |
| 62 | """ |
| 63 | pygame.draw.circle(screen, (255, 0, 0), (self._xLoc, self._yLoc), self._radius) |
| 64 | |
| 65 | def update(self, paddle, brickwall): |
| 66 | """ |
no outgoing calls
no test coverage detected