diff --git a/kdtest/kdtest.pde b/kdtest/kdtest.pde index 0aa9ac5..8d01086 100644 --- a/kdtest/kdtest.pde +++ b/kdtest/kdtest.pde @@ -39,7 +39,7 @@ void draw() { pushMatrix(); cam.update(); - if(drawGnoman) drawGnoman(200); + if(drawGnoman) GnomanDraw(200); if(drawTree && tree != null) { tree.draw(); } @@ -131,7 +131,7 @@ void checkSelect() { } -void drawGnoman(int r) { +void GnomanDraw(int r) { pushStyle(); stroke(c_gnoman); line(-r,0,r,0);