love.graphics.setLineJoin

Sets the line join style. See LineJoin for the possible options.

Function

Synopsis

love.graphics.setLineJoin( join )

Arguments

LineJoin join
The LineJoin to use.

Returns

Nothing.

Examples

The ends of the line segments beveled in an angle so that they join seamlessly.

love.graphics.setLineJoin( 'miter')

No cap applied to the ends of the line segments.

love.graphics.setLineJoin( 'none')

Flattens the point where line segments join together.

love.graphics.setLineJoin( 'bevel')

See Also


Other Languages