mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
beginPath() removed from PApplet, faq stuff
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user