continuing...

This commit is contained in:
benfry
2004-12-09 23:10:57 +00:00
parent 54cc341720
commit 4ade8906d4
3 changed files with 62 additions and 5 deletions

View File

@@ -4433,6 +4433,11 @@ public class PApplet extends Applet
}
public void circle(float x, float y, float radius) {
g.circle(x, y, radius);
}
public float bezierPoint(float a, float b, float c, float d,
float t) {
return g.bezierPoint(a, b, c, d, t);