LineJoin

public struct LineJoin : RawRepresentable, Codable, Hashable

The display of lines when joining.

  • Declaration

    Swift

    public let rawValue: String
  • Declaration

    Swift

    public init(rawValue: String)
  • A join with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line’s width.

    Declaration

    Swift

    public static let bevel: LineJoin
  • A join with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line’s width and centered on the endpoint of the line.

    Declaration

    Swift

    public static let round: LineJoin
  • A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet.

    Declaration

    Swift

    public static let miter: LineJoin