beginPath() removed from PApplet, faq stuff

This commit is contained in:
benfry
2005-09-03 14:04:26 +00:00
parent 7e9204f09b
commit e3892523e6
-12
View File
@@ -5888,18 +5888,6 @@ v PApplet.this.stop();
}
public void beginPath() {
if (recorder != null) recorder.beginPath();
g.beginPath();
}
public void endPath() {
if (recorder != null) recorder.endPath();
g.endPath();
}
public void point(float x, float y) {
if (recorder != null) recorder.point(x, y);
g.point(x, y);