mirror of
https://github.com/processing/processing4.git
synced 2026-02-01 04:41:11 +01:00
lots of changes and fixes to pde, can now export
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user