This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
Name | strokeCap() |
||
---|---|---|---|
Examples | strokeWeight(12.0); 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.
To make point() appear square, use strokeCap(PROJECT). Using strokeCap(SQUARE) (no cap) causes points to become invisible. |
||
Syntax | strokeCap(cap) | ||
Parameters |
| ||
Returns | void | ||
Related | stroke() strokeWeight() strokeJoin() size() |
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.