This repository was archived by the owner on Jan 19, 2023. It is now read-only.

Description
The BezierPath class should support cap style (butt, round or square) and join style (miter, round, bevel).
NSBezierPath implements cap style and join style, so supporting this is a matter of making the attributes available in the appropriate places:
- The cap style and join style should be context state variables, available under capstyle() and joinstyle()
- The BezierPath should inherit these state variables when creating a new bezier path.
- The BezierPath should have getters / setters for cap style and join style.
- The BezierPath constructor should accept capstyle and joinstyle arguments.