ChordThirdType
public enum ChordThirdType: Int, ChordPart
Defines third part of the chord. Second note after the root.
-
Defines major chord. 4 halfsteps between root.
Declaration
Swift
case major
-
Defines minor chord. 3 halfsteps between root.
Declaration
Swift
case minor
-
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
ChordThirdType.Declaration
Swift
public static var all: [ChordThirdType]
View on GitHub
ChordThirdType Enumeration Reference