Processing, 类PShape
中的addChild()
用法介绍。
用法
sh.addChild(who)
sh.addChild(who, idx)
参数
sh
(PShape)
任何 PShape 类型的变量who
(PShape)
任何 PShape 类型的变量idx
(int)
插入新孩子的图层位置
返回
void
说明
将子 PShape 添加到定义为 GROUP 的父 PShape。在示例中,将三个形状 path
、 rectangle
和 circle
添加到名为 house
的父 PShape 变量中,该变量是一个 GROUP。
例子
PShape house;
void setup() {
size(200, 200);
// Make a group PShape
house = createShape(GROUP);
// Make three shapes
PShape path = createShape();
path.beginShape();
path.vertex(-20, -20);
path.vertex(0, -40);
path.vertex(20, -20);
path.endShape();
PShape rectangle = createShape(RECT, -20, -20, 40, 40);
PShape circle = createShape(ELLIPSE, 0, 0, 20, 20);
// Add all three as children
house.addChild(path);
house.addChild(rectangle);
house.addChild(circle);
}
void draw() {
background(52);
translate(mouseX, mouseY);
shape(house);
}
相关用法
- Processing PShape.enableStyle()用法及代码示例
- Processing PShape.setStroke()用法及代码示例
- Processing PShape.isVisible()用法及代码示例
- Processing PShape.getChildCount()用法及代码示例
- Processing PShape.getVertex()用法及代码示例
- Processing PShape.resetMatrix()用法及代码示例
- Processing PShape.rotateX()用法及代码示例
- Processing PShape.getChild()用法及代码示例
- Processing PShape.rotateY()用法及代码示例
- Processing PShape.setVisible()用法及代码示例
- Processing PShape.beginContour()用法及代码示例
- Processing PShape.beginShape()用法及代码示例
- Processing PShape.endShape()用法及代码示例
- Processing PShape.getVertexCount()用法及代码示例
- Processing PShape.setFill()用法及代码示例
- Processing PShape.rotate()用法及代码示例
- Processing PShape.endContour()用法及代码示例
- Processing PShape.scale()用法及代码示例
- Processing PShape.disableStyle()用法及代码示例
- Processing PShape.translate()用法及代码示例
- Processing PShape.setVertex()用法及代码示例
- Processing PShape用法及代码示例
- Processing PShader用法及代码示例
- Processing Pulse用法及代码示例
- Processing PVector.set()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 PShape.addChild()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。