From 57aad3d4ae6817673d26ae0936d2ada217437127 Mon Sep 17 00:00:00 2001 From: Casey Reas Date: Fri, 7 Sep 2012 17:00:01 +0000 Subject: [PATCH] Reference for P5 2 B2 --- core/src/processing/core/PShape.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/core/src/processing/core/PShape.java b/core/src/processing/core/PShape.java index aef78e573..1fc4dd8c4 100644 --- a/core/src/processing/core/PShape.java +++ b/core/src/processing/core/PShape.java @@ -474,9 +474,15 @@ public class PShape implements PConstants { protected void solid(boolean solid) { } + /** + * @webref pshape:method + */ public void beginContour() { } - + + /** + * @webref pshape:method + */ public void endContour() { } @@ -495,6 +501,9 @@ public class PShape implements PConstants { public void normal(float nx, float ny, float nz) { } + /** + * @webref pshape:method + */ public void end() { } @@ -1282,6 +1291,9 @@ public class PShape implements PConstants { // can't be just 'add' because that suggests additive geometry + /** + * @webref pshape:method + */ public void addChild(PShape who) { if (children == null) { children = new PShape[1];