Skip to content

Commit

Permalink
Fixed kdtest javascript mode, I found the console :/
Browse files Browse the repository at this point in the history
  • Loading branch information
rwb11001 committed Nov 30, 2015
1 parent 4fc5bcf commit 1cb4ed2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kdtest/kdtest.pde
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void draw() {

pushMatrix();
cam.update();
if(drawGnoman) drawGnoman(200);
if(drawGnoman) GnomanDraw(200);
if(drawTree && tree != null) {
tree.draw();
}
Expand Down Expand Up @@ -131,7 +131,7 @@ void checkSelect() {

}

void drawGnoman(int r) {
void GnomanDraw(int r) {
pushStyle();
stroke(c_gnoman);
line(-r,0,r,0);
Expand Down

0 comments on commit 1cb4ed2

Please sign in to comment.