making changes to put bagel outside processing dir

This commit is contained in:
benfry
2001-11-23 21:40:34 +00:00
parent 3e9b0de765
commit 5ab3558c02
2 changed files with 9 additions and 3 deletions

View File

@@ -708,8 +708,8 @@ public class ProcessingApplet extends Applet
}
public void cube(float size) {
g.cube(size);
public void box(float size) {
g.box(size);
}
@@ -877,6 +877,12 @@ public class ProcessingApplet extends Applet
}
public void colorMode(int colorMode,
int maxX, int maxY, int maxZ) {
g.colorMode(colorMode, maxX, maxY, maxZ);
}
public void colorMode(int colorMode,
int maxX, int maxY, int maxZ, int maxA) {
g.colorMode(colorMode, maxX, maxY, maxZ, maxA);