Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added cases
  • Loading branch information
cor11004 committed Dec 7, 2015
1 parent e2066fb commit 0bbc673
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions main/Point.pde
Expand Up @@ -60,6 +60,7 @@ public class Point {

public void deleteEdges() {
while(ref != null) {
System.out.println("REMOVING EDGE " + ref.getOrigin() + " " + ref.gettwin().getOrigin());
ref.Remove();
}

Expand Down
9 changes: 6 additions & 3 deletions main/main.pde
Expand Up @@ -100,14 +100,17 @@ void keyPressed() {
case 'r':
mode = 1;
break;
case 'h':
mode = 2;
break;
case 'p':
mode = 2;
mode = 3;
break;
case 'b':
mode = 3;
mode = 4;
break;
case 'g':
mode = 4;
mode = 5;
break;
}

Expand Down

0 comments on commit 0bbc673

Please sign in to comment.