ChordFifthType
public enum ChordFifthType: Int, ChordPart
Defines fifth part of the chord. Third note after root note.
-
Perfect fifth interval between root.
Declaration
Swift
case perfect
-
Half step down of perfect fifth.
Declaration
Swift
case diminished
-
Half step up of perfect fifth.
Declaration
Swift
case agumented
-
Initilize chord part with interval.
Declaration
Swift
public init?(interval: Interval) -
Interval between root.
Declaration
Swift
public var interval: Interval -
Notation of chord part.
Declaration
Swift
public var notation: String -
Description of chord part.
Declaration
Swift
public var description: String -
All values of
ChordFifthType.Declaration
Swift
public static var all: [ChordFifthType]
View on GitHub
ChordFifthType Enumeration Reference