From 84642e02bce33d5e1a6d23f3e544322c2bdeb9c5 Mon Sep 17 00:00:00 2001 From: ThermalSpan Date: Thu, 26 Nov 2015 22:36:41 -0500 Subject: [PATCH] So, I guess I can't have a method called drawHelp but I can have one called drawHelpMenu? I don't understand javascript mode but it works now. --- .DS_Store | Bin 0 -> 6148 bytes kdtest/kdtest.pde | 4 ++-- kdtest/web-export/kdtest.pde | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..7e4830b757a62df0380f946e30ee734fb7ff4828 GIT binary patch literal 6148 zcmeHKJFWsT4733uBpOP}T;bgyLT~~ufMB8FNfbc873bn;j6Vfvp@RZ6mYhi(Pohk* zUWa?01gm#!`yobV6gzO zCbofyz%;19plY@l8g#@<=GDYDFzBM$d}!XR*`cW4j`NGBi`GDnRDcRRD$tMR#OnV7 z{-XbXBymLrsK8Gtpo95xKEso;wssz8wYI=laLc*E%`kTg1~11zFUMF|Ii7k_iGvE;K6eX$5Zl{}rPE literal 0 HcmV?d00001 diff --git a/kdtest/kdtest.pde b/kdtest/kdtest.pde index 70c4085..f9cf563 100644 --- a/kdtest/kdtest.pde +++ b/kdtest/kdtest.pde @@ -43,7 +43,7 @@ void draw() { if(drawCon) con.draw(); if (drawHelp) { - drawHelp(); + drawHelpMenu(); } else { statusLine.draw(); } @@ -88,7 +88,7 @@ void keyPressed() { } } -void drawHelp() { +void drawHelpMenu() { float hwidth = 400; float hheight = 600; diff --git a/kdtest/web-export/kdtest.pde b/kdtest/web-export/kdtest.pde index df471bd..9b4819e 100644 --- a/kdtest/web-export/kdtest.pde +++ b/kdtest/web-export/kdtest.pde @@ -25,7 +25,7 @@ void setup() { pointList = new ArrayList(); drawCon = false; - drawHelp = false; + drawHelp = true; G_mode = 1; } @@ -43,7 +43,7 @@ void draw() { if(drawCon) con.draw(); if (drawHelp) { - drawHelp(); + drawHelpMenu(); } else { statusLine.draw(); } @@ -88,7 +88,7 @@ void keyPressed() { } } -void drawHelp() { +void drawHelpMenu() { float hwidth = 400; float hheight = 600;