Reputation: 4360
I'm using path = paper.Path(point1, point2)
and path.add(pointN)
to create a polyline:
I want the joints made with circles, like the following:
How can I make this?
Upvotes: 0
Views: 231
Reputation: 11669
Set path.strokeJoin
to 'miter', 'round' or 'bevel' (default is 'miter'), and path.strokeCap
to 'round', 'square' or 'butt' (default is 'butt').
Upvotes: 3