Name | strokeCap |
||
---|---|---|---|
Examples |
ROUND <- bitwShiftL(1, 1) SQUARE <- bitwShiftL(1, 0) PROJECT <- bitwShiftL(1, 2) strokeWeight(12) strokeCap(ROUND) line(20, 30, 80, 30) strokeCap(SQUARE) line(20, 50, 80, 50) strokeCap(PROJECT) line(20, 70, 80, 70) | ||
Description | Sets the style for rendering line endings. These ends are either squared, extended, or rounded, each of which specified with the corresponding parameters: SQUARE, PROJECT, and ROUND. The default cap is ROUND. | ||
Syntax | strokeMode(mode); | ||
Parameters |
| ||
Related |
stroke strokeWeight strokeJoin size |
Cover
Reference
Tutorials
Bugs