-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Brian Williams
committed
Dec 30, 2018
1 parent
1422bd5
commit c0a11fa
Showing
5 changed files
with
132 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// MajorModes.swift | ||
// SongBook | ||
// | ||
// Created by Brian on 30/12/2018. | ||
// Copyright © 2018 Eviathan. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
public enum MajorModes: Int { | ||
case Ionian = 0 | ||
case Dorian = 1 | ||
case Phrygian = 2 | ||
case Lydian = 3 | ||
case Mixolydian = 4 | ||
case Aeolian = 5 | ||
case Locrian = 6 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// ScaleStyle.swift | ||
// SongBook | ||
// | ||
// Created by Brian on 30/12/2018. | ||
// Copyright © 2018 Eviathan. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
public enum ScaleStyle: Int { | ||
case Pentatonic = 5 | ||
case Hexatonic = 6 | ||
case Heptatonic = 7 | ||
case Octatonic = 8 | ||
case Nonatonic = 9 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters