當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。