From 543388c8eb905de83f3bf04b41c3bc7ab902494f Mon Sep 17 00:00:00 2001 From: REAS Date: Wed, 22 May 2013 15:28:43 -0700 Subject: [PATCH] Add getChildCount() to PShape reference --- core/src/processing/core/PShape.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/processing/core/PShape.java b/core/src/processing/core/PShape.java index 026d3214c..e5eaa28fd 100644 --- a/core/src/processing/core/PShape.java +++ b/core/src/processing/core/PShape.java @@ -1647,6 +1647,10 @@ public class PShape implements PConstants { return parent; } + /** + * @webref + * @brief Returns the number of children + */ public int getChildCount() { return childCount; }