Enum LineJoin
Specifies how two connected lines are joined when stroking a path.
Mirrors the lineJoin property in the HTML5 Canvas API.
public enum LineJoin
Fields
Bevel = 2Lines are joined with a beveled corner by connecting the outer corners of the strokes.
Miter = 0Lines are joined with a sharp corner or extended miter, depending on the miter limit.
Round = 1Lines are joined with a circular arc, creating a rounded corner.