adding circle, square, push, pop

This commit is contained in:
Ben Fry
2019-01-18 15:59:05 -08:00
parent eb60ee2d05
commit 9e14f98ec3
+24
View File
@@ -12109,6 +12109,12 @@ public class PApplet implements PConstants {
}
public void square(float x, float y, float extent) {
if (recorder != null) recorder.square(x, y, extent);
g.square(x, y, extent);
}
/**
* ( begin auto-generated from ellipseMode.xml )
*
@@ -12197,6 +12203,12 @@ public class PApplet implements PConstants {
}
public void circle(float x, float y, float extent) {
if (recorder != null) recorder.circle(x, y, extent);
g.circle(x, y, extent);
}
/**
* ( begin auto-generated from box.xml )
*
@@ -13219,6 +13231,18 @@ public class PApplet implements PConstants {
}
public void push() {
if (recorder != null) recorder.push();
g.push();
}
public void pop() {
if (recorder != null) recorder.pop();
g.pop();
}
/**
* ( begin auto-generated from pushMatrix.xml )
*