strokeJoin()

Shape / Attributes

Description

Sets the style of the joints which connect line segments. Options: MITER, BEVEL, ROUND.

Syntax

void strokeJoin(int join)

Parameters

NameTypeDescription
joinintMITER, BEVEL, or ROUND

Returns

void

Related

Under the Hood

From Processing.h:

void strokeJoin(int join);

Under the Hood

From Processing.cpp:

void PApplet::strokeJoin(int) {}