continuing to mess with graphics api, getting things cleared up

This commit is contained in:
benfry
2004-11-15 21:11:22 +00:00
parent a213d18fb7
commit 53f48803f0
4 changed files with 96 additions and 29 deletions

View File

@@ -4640,6 +4640,16 @@ public class PApplet extends Applet
}
public float screenX(float x, float y) {
return g.screenX(x, y);
}
public float screenY(float x, float y) {
return g.screenY(x, y);
}
public float screenX(float x, float y, float z) {
return g.screenX(x, y, z);
}