Reference changes for 2.0

This commit is contained in:
Casey Reas
2011-09-25 03:56:26 +00:00
parent d15dff5a82
commit b54608d62d
7 changed files with 35 additions and 19 deletions

View File

@@ -11,7 +11,7 @@ class Boid {
Boid(PVector l, float ms, float mf) {
acc = new PVector(0,0);
vel = new PVector(random(-1,1),random(-1,1));
vel = new PVector(random(-1,1), random(-1,1));
loc = l.get();
r = 2.0;
maxspeed = ms;