📜  p5.js |清除()函数

📅  最后修改于: 2022-05-13 01:56:19.523000             🧑  作者: Mango

p5.js |清除()函数

p5.js 中的clear()函数用于清除缓冲区中的像素。此函数仅清除画布。此函数清除所有内容以使所有像素 100% 透明。它可用于重置绘图画布。

句法:

clear()

参数:此函数不接受任何参数。

下面的程序说明了 p5.js 中的 clear()函数:

示例:此示例使用 clear()函数清除画布。

function setup() {
  
    // Create canvas 
    createCanvas(700, 700);
}
   
function draw() {
      
    noStroke();
      
    // Draw Ellipse at mouseX and mouseY
    ellipse(mouseX, mouseY, 20, 20);
   
    // Set color of the ellipse
    fill('green');
      
    // Set the text size
    textSize(20);
      
    // Set the text
    text("Press Mouse To Clear The Screen", 20, 30);
}
   
// Define the mousePressed function
function mousePressed() {
    clear();
}

输出:
在单击鼠标按钮之前:

单击鼠标按钮后:

参考: https://p5js.org/reference/#/p5/clear