p5.js中的noCanvas()函数用于删除由p5.js创建的默认画布。可用于不需要画布的草图。它不接受任何参数。
用法:
noCanvas()
参数:此函数不接受任何参数。
以下程序说明了p5.js中的noCanvas()函数:
例:
function setup() {
createCanvas(400, 300);
// Create buttons for creating
// and removing the canvas
createBtn = createButton("Create Canvas");
createBtn.position(30, 20);
createBtn.mouseClicked(createDrawArea);
removeBtn = createButton("Remove Canvas");
removeBtn.position(30, 50);
removeBtn.mouseClicked(removeDrawArea);
}
function removeDrawArea() {
// Wrap noCanvas() in a try-catch
// to prevent error in case there
// exists no canvas to remove
try {
noCanvas();
} catch (e) {
print("No canvas found to remove");
print(e);
}
}
function createDrawArea() {
// Create a canvas with the
// given dimensions
createCanvas(400, 300);
}
function draw() {
clear();
background("green");
textSize(20);
text("This is the canvas area", 50, 130);
text("Canvas height:" + height, 50, 150);
text("Canvas width:" + width, 50, 170);
}
输出:
相关用法
- PHP dir()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- p5.js hex()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- PHP next()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Set first()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP each()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js value()用法及代码示例
- PHP ord()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.js | noCanvas() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。