Changes to PShape.java for documentation

This commit is contained in:
Casey Reas
2012-11-17 03:13:26 +00:00
parent 3fcb2b2f21
commit c3c52602f0
2 changed files with 25 additions and 10 deletions
@@ -13,7 +13,7 @@ void setup() {
smooth();
// Creating the PShape as an ellipse
// The corner is -50,-50 so that the center is at 0,0
circle = createShape(RECT, -50, -25, 100, 50);
circle = createShape(ELLIPSE, -50, -25, 100, 50);
}
void draw() {