Reference for P5 2 B2

This commit is contained in:
Casey Reas
2012-09-07 17:00:01 +00:00
parent dc47fd5fe0
commit 57aad3d4ae

View File

@@ -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];