api cleanup

This commit is contained in:
benfry
2005-04-09 02:39:48 +00:00
parent 7f1bd74306
commit bc13d43bf5
7 changed files with 187 additions and 184 deletions

View File

@@ -5556,15 +5556,15 @@ v PApplet.this.stop();
}
public void push() {
if (recorder != null) recorder.push();
g.push();
public void pushMatrix() {
if (recorder != null) recorder.pushMatrix();
g.pushMatrix();
}
public void pop() {
if (recorder != null) recorder.pop();
g.pop();
public void popMatrix() {
if (recorder != null) recorder.popMatrix();
g.popMatrix();
}