ChordSeventhType
public enum ChordSeventhType: Int, ChordPart
Defiens seventh chords. If you add seventh note, you have seventh chord.
-
Seventh note of the chord. 11 halfsteps between root.
Declaration
Swift
case major
-
Halfstep down of seventh note. 10 halfsteps between root.
Declaration
Swift
case dominant
-
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
ChordSeventhType.Declaration
Swift
public static var all: [ChordSeventhType]
View on GitHub
ChordSeventhType Enumeration Reference