Flock example: remove unused variable.

This commit is contained in:
Jonathan Puckey 2011-04-28 21:16:05 +02:00
parent 3751dd0a38
commit c0febab6c1

View file

@ -224,8 +224,7 @@
}
});
var boids = [],
center = document.bounds.center;
var boids = [];
for (var i = 0; i < 30; i++) {
var position = Point.random() * document.size;
boids.push(new Boid(position, 10, 0.05));