lots of changes and fixes to pde, can now export

This commit is contained in:
benfry
2001-08-10 01:01:53 +00:00
parent 4df45d0531
commit 2b23c0c8d5
3 changed files with 191 additions and 14 deletions

View File

@@ -723,6 +723,10 @@ public class ProcessingApplet extends Applet
g.colorMode(colorMode, maxX, maxY, maxZ, maxA);
}
public void colorScale(int max) {
g.colorScale(max);
}
public void colorScale(int maxX, int maxY, int maxZ, int maxA) {
g.colorScale(maxX, maxY, maxZ, maxA);
}
@@ -771,6 +775,10 @@ public class ProcessingApplet extends Applet
g.stroke(x, y, z, a);
}
public void clear() {
g.clear();
}
public void noBackground() {
g.noBackground();
}