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 PShape.setVisible()用法及代碼示例
- Processing PShape.setFill()用法及代碼示例
- Processing PShape.setVertex()用法及代碼示例
- Processing PShape.scale()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing PShape.addChild()用法及代碼示例
- Processing PShape.isVisible()用法及代碼示例
- Processing PShape.getChildCount()用法及代碼示例
- Processing PShape.getVertex()用法及代碼示例
- Processing PShape.resetMatrix()用法及代碼示例
- Processing PShape.rotateX()用法及代碼示例
- Processing PShape.getChild()用法及代碼示例
- Processing PShape.rotateY()用法及代碼示例
- Processing PShape.beginContour()用法及代碼示例
- Processing PShape.beginShape()用法及代碼示例
- Processing PShape.endShape()用法及代碼示例
- Processing PShape.getVertexCount()用法及代碼示例
- Processing PShape.rotate()用法及代碼示例
- Processing PShape.endContour()用法及代碼示例
- Processing PShape.disableStyle()用法及代碼示例
- Processing PShape.translate()用法及代碼示例
- Processing PShape用法及代碼示例
- Processing PShader用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PVector.set()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PShape.setStroke()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。