p5.js | noStroke()函数
noStroke()函数是 p5.js 中的一个内置函数,用于删除用于在形状周围绘制线条和边框的轮廓。默认情况下,黑色笔触设置为形状。
句法:
noStroke()
参数:此函数不接受任何参数。
下面的程序说明了 P5.js 中的 noStroke()函数:
程序:
function setup() {
// Canvas size 400*400
createCanvas(400, 400);
}
function draw() {
// Shape defined just below, will not have any outline
noStroke();
// Fill light-green color to shape
fill('lightgreen');
rect(20, 20, 160, 160);
}
输出:
参考: https://p5js.org/reference/#/p5/noStroke