P5.js 日本語リファレンス(strokeCap)
このページでは「P5.js 日本語リファレンス」 の strokeCap関数を説明します。
strokeCap()
説明文
LINEの端形状を設定します。これらの端は、2乗、拡張、丸められており、それぞれが対応するパラメータ SQUARE、PROJECT、ROUNDで指定します。デフォルトは ROUND です。
構文
strokeCap(cap)
パラメタ
- cap
定数:SQUARE、PROJECT、ROUND のいずれか
例
function draw() {
strokeWeight(20.0);
strokeCap(ROUND);
line(20, 30, 150, 30);
strokeCap(PROJECT);
line(20, 70, 150, 70);
strokeCap(SQUARE);
line(20, 110, 150, 110);
}
実行結果
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。
Author And Source
この問題について(P5.js 日本語リファレンス(strokeCap)), 我々は、より多くの情報をここで見つけました https://qiita.com/bit0101/items/bcf3d707741acca9d510著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .