def setup
background(220)
noFill
strokeWeight(10.0)
strokeJoin(MITER)
beginShape
vertex(35, 20)
vertex(65, 50)
vertex(35, 80)
endShape
end
def setup
background(220)
noFill
strokeWeight(10.0)
strokeJoin(BEVEL)
beginShape()
vertex(35, 20)
vertex(65, 50)
vertex(35, 80)
endShape
end
def setup
background(220)
noFill
strokeWeight(10.0)
strokeJoin(ROUND)
beginShape
vertex(35, 20)
vertex(65, 50)
vertex(35, 80)
endShape
end
図形や文字などを描画する際の境界線の結合スタイルを設定します。
| 引数名 | 内容 | 備考 | オプション | デフォルト値 |
|---|---|---|---|---|
| join | 結合スタイル | MITER : 留め継ぎ BEVEL : そぎ継ぎ ROUND : 丸み |
なし