Last active
August 29, 2015 14:13
-
-
Save 0V/5a6fa5de3df32d6790c1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/// <summary> | |
/// 値の単位は Hz | |
/// </summary> | |
public enum TemperamentEqual : int | |
{ | |
無音 = 0, | |
ド = 440, | |
ド_シャープ = 466, | |
レ_フラット = ド_シャープ, | |
レ = 494, | |
レ_シャープ = 523, | |
ミ_フラット = レ_シャープ, | |
ミ = 554, | |
ファ = 587, | |
ファ_シャープ = 622, | |
ソ_フラット = ファ_シャープ, | |
ソ = 659, | |
ソ_シャープ = 698, | |
ラ_フラット = ソ_シャープ, | |
ラ = 740, | |
ラ_シャープ = 784, | |
シ_フラット = ラ_シャープ, | |
シ = 830, | |
高いド = 880, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment