Element

public enum Element

Undocumented

  • p

    Single piano dynamic element.

    Declaration

    Swift

    public static var p: Element { get }
  • f

    Single forte dynamic element.

    Declaration

    Swift

    public static var f: Element { get }
  • Piano vector dynamic element.

    Declaration

    Swift

    public static func p(_ count: Int = 1) -> Element
  • Forte vector dynamic element.

    Declaration

    Swift

    public static func f(_ count: Int = 1) -> Element
  • The direction of a dynamic element.

    See more

    Declaration

    Swift

    public enum Direction : Double
  • A mezzo forte or mezzo piano.

    Declaration

    Swift

    case mezzo(Direction)
  • A vector of a given direction with the given magnitude.

    Declaration

    Swift

    case vector(_: Direction, _: Int)
  • Printable description of Dynamic.Element.

    Declaration

    Swift

    public var description: String { get }