()
| 77 | boid.velocity /= boid.velocity.mag() / SPEED_LIMIT |
| 78 | |
| 79 | def build_boids(): |
| 80 | # Create boids variable. |
| 81 | global boids |
| 82 | boids = tuple(Boid(WIDTH, HEIGHT, OFFSET_START) for boid in xrange(BOIDS)) |
| 83 | |
| 84 | ################################################################################ |
| 85 |
no test coverage detected