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


p5.js strokeWeight()用法及代码示例


p5.j​​s中的strokeWeight()函数用于设置用于线条,点和形状周围边框的笔触宽度。通过使用像素设置笔划粗细。

用法:

strokeWidth(weight)

参数:此函数接受单个参数的权重,该权重存储笔划的权重(以像素为单位)。


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

示例1:本示例使用strokeWeight()函数设置笔划的宽度。

function setup() { 
  
    // Create Canvas of given size 
    createCanvas(380, 170); 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
      
    // Set the stroke width 
    strokeWeight(20); 
      
    // Set the filled color 
    fill('green'); 
      
    // Draw the circle 
    circle(60, 60, 34); 
      
    // Set the text size 
    textSize(20); 
      
    // Set the text to print 
    text("GeeksForGeeks", 120, 70); 
}

输出:

示例2:本示例使用strokeWeight()函数设置笔划的宽度。

function setup() { 
      
    // Create Canvas of given size 
    createCanvas(380, 170); 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
      
    // Set the stroke clor 
    stroke('orange'); 
      
    // Set the stroke width to 10 
    strokeWeight(10); // Orange 
      
    // Draw a line 
    line(20, 70, 80, 70); 
      
    // Set the stroke color 
    stroke('white'); 
      
    // Set the stroke width to 8 
    strokeWeight(8); // White 
      
    // Draw a line 
    line(20, 90, 80, 90); 
      
    // Set stroke color 
    stroke('green'); 
      
    // Set the stroke width to 6 
    strokeWeight(6); // Green 
      
    // Draw a line 
    line(20, 110, 80, 110); 
}

输出:

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



相关用法


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