当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | noStroke() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。