From 1cb4ed2bf7e6574d47c7f93b03b134ec5fdde9f9 Mon Sep 17 00:00:00 2001 From: ThermalSpan Date: Mon, 30 Nov 2015 04:41:12 -0500 Subject: [PATCH] Fixed kdtest javascript mode, I found the console :/ --- kdtest/kdtest.pde | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);