lots of fixes to the font code

This commit is contained in:
benfry
2004-10-09 19:19:59 +00:00
parent 941b757a5f
commit eed4241071
5 changed files with 158 additions and 63 deletions

View File

@@ -4546,8 +4546,8 @@ public class PApplet extends Applet
}
public void text(String s, float x, float y, float z, float w, float h) {
g.text(s, x, y, z, w, h);
public void text(String s, float x1, float y1, float z, float x2, float y2) {
g.text(s, x1, y1, z, x2, y2);
}