Processing, 类PShape
中的setVisible()
用法介绍。
用法
sh.setVisible(visible)
参数
sh
(PShape)
任何 PShape 类型的变量visible
(boolean)
"false" 使形状不可见,"true" 使其可见
返回
void
说明
将形状设置为可见或不可见。这由visible
参数的值决定。
形状的默认可见性通常由创建 SVG 文件的任何程序控制。例如,此参数通过在 Adobe Illustrator 的图层调色板中显示或隐藏形状来控制。
例子
PShape s;
void setup() {
size(400, 400);
// The file "bot.svg" must be in the data folder
// of the current sketch to load successfully
s = loadShape("bot.svg");
}
void draw() {
background(204);
shape(s, 40, 40, 320, 320); // Draw shape
s.setVisible(mousePressed);
if (s.isVisible() == false) { // Or use: "if (!s.isVisible)"
noFill();
rect(40, 40, 320, 320);
}
}
相关用法
- Processing PShape.setVertex()用法及代码示例
- Processing PShape.setStroke()用法及代码示例
- Processing PShape.setFill()用法及代码示例
- Processing PShape.scale()用法及代码示例
- Processing PShape.enableStyle()用法及代码示例
- Processing PShape.addChild()用法及代码示例
- Processing PShape.isVisible()用法及代码示例
- Processing PShape.getChildCount()用法及代码示例
- Processing PShape.getVertex()用法及代码示例
- Processing PShape.resetMatrix()用法及代码示例
- Processing PShape.rotateX()用法及代码示例
- Processing PShape.getChild()用法及代码示例
- Processing PShape.rotateY()用法及代码示例
- Processing PShape.beginContour()用法及代码示例
- Processing PShape.beginShape()用法及代码示例
- Processing PShape.endShape()用法及代码示例
- Processing PShape.getVertexCount()用法及代码示例
- Processing PShape.rotate()用法及代码示例
- Processing PShape.endContour()用法及代码示例
- Processing PShape.disableStyle()用法及代码示例
- Processing PShape.translate()用法及代码示例
- Processing PShape用法及代码示例
- Processing PShader用法及代码示例
- Processing Pulse用法及代码示例
- Processing PVector.set()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 PShape.setVisible()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。