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


Processing PShape.setStroke()用法及代碼示例


Processing, 類PShape中的setStroke()用法介紹。

用法

  • sh.setStroke(stroke)

參數

  • sh (PShape) 任何 PShape 類型的變量

返回

  • void

說明

setStroke() 方法定義了 PShape 的輪廓顏色。此方法在創建形狀後或顯式定義形狀時使用(例如 createShape(RECT, 20, 20, 80, 80) ),如上例所示。當使用 beginShape()endShape() 創建形狀時,可以在 beginShape()endShape() 中使用 fill()stroke() 更改其屬性。但是,在創建形狀後,隻有 setStroke() 方法可以為 PShape 定義新的筆畫值。

例子

PShape circle;

void setup() {  
  size(640, 360, P2D);
  circle = createShape(ELLIPSE, 0, 0, 200, 200);
  circle.setStroke(color(255));  
}

void draw() {
  background(51);
  circle.setFill(color(random(255)));
  translate(mouseX, mouseY);
  shape(circle);
}

相關用法


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