Update the ball\'s position.
(self, frames_per_second)
| 117 | self.err = Vector(0, 0) |
| 118 | |
| 119 | def move(self, frames_per_second): |
| 120 | 'Update the ball\'s position.' |
| 121 | self.pos += self.vel / frames_per_second |
| 122 | |
| 123 | ################################################################################ |
| 124 |
no outgoing calls
no test coverage detected