fixes to curve api. whups.

This commit is contained in:
benfry
2004-07-09 01:06:43 +00:00
parent 991bb895a8
commit 5da069f7cf
2 changed files with 5 additions and 5 deletions

View File

@@ -2397,13 +2397,13 @@ public class PApplet extends Applet
}
public void bezierSegments(int segments) {
g.bezierSegments(segments);
public void bezierDetail(int detail) {
g.bezierDetail(detail);
}
public void curveSegments(int segments) {
g.curveSegments(segments);
public void curveDetail(int detail) {
g.curveDetail(detail);
}