p5.js | noFill()函数
noFill()函数用于禁用填充几何。如果同时调用 noStroke() 和 noFill()函数,则屏幕上不会绘制任何内容。
句法:
noFill()
参数:此函数不接受任何参数。
以下示例说明了 p5.js 中的 noFill()函数:
示例 1:
function setup() {
// Create Canvas of given size
createCanvas(400, 300);
}
function draw() {
// Set the background color
background(220);
// Use fill() function to fill color
fill('green')
// Draw a line
rect(50, 50, 150, 150);
// Use noFill() function
noFill();
// Draw a line
rect(100, 100, 150, 150);
}
输出:
示例 2:
function setup() {
// Create Canvas of given size
createCanvas(400, 300);
}
function draw() {
// Set the background color
background(220);
// Use noFill() function
noFill();
// Draw a line
circle(140, 100, 150);
// Use fill() function to fill color
fill('green')
// Draw a line
circle(240, 100, 150);
}
输出:
参考: https://p5js.org/reference/#/p5/nofill