From e3892523e66a6fb319a5cc3e4c76a79d541cebfe Mon Sep 17 00:00:00 2001 From: benfry Date: Sat, 3 Sep 2005 14:04:26 +0000 Subject: [PATCH] beginPath() removed from PApplet, faq stuff --- core/PApplet.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/PApplet.java b/core/PApplet.java index f43ceb880..4b7670b65 100644 --- a/core/PApplet.java +++ b/core/PApplet.java @@ -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);