mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 09:39:19 +01:00
PImage.alpha tweaks
This commit is contained in:
@@ -3610,11 +3610,21 @@ public class PApplet extends Applet
|
||||
}
|
||||
|
||||
|
||||
static public void alpha(PImage image, int alpha[]) {
|
||||
PGraphics.alpha(image, alpha);
|
||||
}
|
||||
|
||||
|
||||
public void alpha(PImage alpha) {
|
||||
g.alpha(alpha);
|
||||
}
|
||||
|
||||
|
||||
static public void alpha(PImage image, PImage alpha) {
|
||||
PGraphics.alpha(image, alpha);
|
||||
}
|
||||
|
||||
|
||||
public void filter(int kind) {
|
||||
g.filter(kind);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user