a port of the Processing Visualization Language
Name

strokeCap()

Examples
example pic
smooth();
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 and specified with the corresponding parameters SQUARE, PROJECT, and ROUND. The default cap is ROUND.

This function is not available with the P2D, P3D, or OPENGL renderers. More information about the renderers can be found in the size() reference.

Syntax
strokeCap(MODE)
Parameters
MODE Either SQUARE, PROJECT, or ROUND
Usage Web & Application
Related stroke()
strokeWeight()
strokeJoin()
size()

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub