Processing, strokeJoin()
用法介紹。
用法
strokeJoin(join)
參數
join
(int)
斜接、斜切、圓形
返回
void
說明
設置連接線段的關節樣式。這些接頭可以是斜接、斜切或倒圓的,並使用相應的參數 MITRE、BEVEL 和 ROUND 指定。默認關節是 MITRE。
例子
size(400, 400);
noFill();
strokeWeight(40.0);
strokeJoin(MITER);
beginShape();
vertex(140, 80);
vertex(260, 200);
vertex(140, 320);
endShape();
size(400, 400);
noFill();
strokeWeight(40.0);
strokeJoin(BEVEL);
beginShape();
vertex(140, 80);
vertex(260, 200);
vertex(140, 320);
endShape();
size(400, 400);
noFill();
strokeWeight(40.0);
strokeJoin(ROUND);
beginShape();
vertex(140, 80);
vertex(260, 200);
vertex(140, 320);
endShape();
相關用法
- Processing strokeWeight()用法及代碼示例
- Processing stroke()用法及代碼示例
- Processing strokeCap()用法及代碼示例
- Processing str()用法及代碼示例
- Processing static用法及代碼示例
- Processing scale()用法及代碼示例
- Processing splice()用法及代碼示例
- Processing super用法及代碼示例
- Processing subset()用法及代碼示例
- Processing saveJSONArray()用法及代碼示例
- Processing saveXML()用法及代碼示例
- Processing switch用法及代碼示例
- Processing sqrt()用法及代碼示例
- Processing serverEvent()用法及代碼示例
- Processing save()用法及代碼示例
- Processing saveStrings()用法及代碼示例
- Processing saveTable()用法及代碼示例
- Processing shorten()用法及代碼示例
- Processing saturation()用法及代碼示例
- Processing settings()用法及代碼示例
- Processing spotLight()用法及代碼示例
- Processing setLocation()用法及代碼示例
- Processing splitTokens()用法及代碼示例
- Processing setResizable()用法及代碼示例
- Processing specular()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 strokeJoin()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。