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


Processing strokeWeight()用法及代碼示例


Processing, strokeWeight()用法介紹。

用法

  • strokeWeight(weight)

參數

  • weight (float) 筆畫的權重(以像素為單位)

返回

  • void

說明

設置用於線條、點和形狀周圍邊框的筆觸寬度。所有寬度均以像素為單位設置。



使用帶有 strokeWeight(1) 或更小的 point() 可能不會在屏幕上繪製任何內容,具體取決於計算機的圖形設置。解決方法包括使用設置像素set() or drawing the point using either circle() or square().

例子

size(400, 400);
strokeWeight(4);  // Default
line(80, 80, 320, 80);
strokeWeight(16);  // Thicker
line(80, 160, 320, 160);
strokeWeight(40);  // Beastly
line(80, 280, 320, 280);
Image output for example 1

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 strokeWeight()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。