p5.js中的print()函数将内容写入Web浏览器的控制台区域。这有助于查看程序生成的数据,从而有助于调试代码。元素可以使用引号(“”)分隔,并与加法运算符(+)结合在一起。使用print('\ n')显示空白行。
用法:
print(c)
参数:该函数接受单个参数c,该参数存储要打印的Number,String,Object,Boolean,Array的任意组合。
以下示例程序旨在说明p5.js中的print()函数:
示例1:本示例使用print()函数在控制台上显示内容。
function setup() {
// Create canvas of given size
createCanvas(400, 400);
// print function call
print("Hello GeeksForGeeks");
}
function draw() {
// Set the background color
background(220);
}
输出:
示例2:本示例使用print()函数在控制台上显示内容。
function setup() {
// Create canvas of given size
createCanvas(400, 400);
// print function call
for(let i = 0; i < 4; i++) {
for(let j = 0; j < i; j++) {
print("*");
}
print("\n");
}
}
function draw() {
// Set the background color
background(220);
}
输出:
参考: https://p5js.org/reference/#/p5/print
相关用法
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | print() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。