Removed non-ASCII chars from PShapeSVG.java

This commit is contained in:
Casey Reas
2011-09-22 21:35:02 +00:00
parent 25674cee59
commit a2c6667ed7
5 changed files with 21 additions and 15 deletions

View File

@@ -27,5 +27,5 @@ void draw() {
// Add a new boid into the System
void mousePressed() {
flock.addBoid(new Boid(new PVector(mouseX,mouseY),2.0f,0.05f));
flock.addBoid(new Boid(new PVector(mouseX,mouseY), 2.0, 0.05));
}