ChordSuspendedType
public enum ChordSuspendedType: Int, ChordPart
Defines suspended chords. If you play second or fourth note of chord, instead of thirds, than you have suspended chords.
-
Second note of chord instead of third part. 2 halfsteps between root.
Declaration
Swift
case sus2
-
Fourth note of chord instead of third part. 5 halfsteps between root.
Declaration
Swift
case sus4
-
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
ChordSuspendedType.Declaration
Swift
public static var all: [ChordSuspendedType]
View on GitHub
ChordSuspendedType Enumeration Reference