Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rwb11001 committed Nov 27, 2015
1 parent 5bab2af commit 84642e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions kdtest/kdtest.pde
Expand Up @@ -43,7 +43,7 @@ void draw() {
if(drawCon) con.draw();

if (drawHelp) {
drawHelp();
drawHelpMenu();
} else {
statusLine.draw();
}
Expand Down Expand Up @@ -88,7 +88,7 @@ void keyPressed() {
}
}

void drawHelp() {
void drawHelpMenu() {
float hwidth = 400;
float hheight = 600;

Expand Down
6 changes: 3 additions & 3 deletions kdtest/web-export/kdtest.pde
Expand Up @@ -25,7 +25,7 @@ void setup() {
pointList = new ArrayList<Point>();

drawCon = false;
drawHelp = false;
drawHelp = true;
G_mode = 1;
}

Expand All @@ -43,7 +43,7 @@ void draw() {
if(drawCon) con.draw();

if (drawHelp) {
drawHelp();
drawHelpMenu();
} else {
statusLine.draw();
}
Expand Down Expand Up @@ -88,7 +88,7 @@ void keyPressed() {
}
}

void drawHelp() {
void drawHelpMenu() {
float hwidth = 400;
float hheight = 600;

Expand Down

0 comments on commit 84642e0

Please sign in to comment.