Skip to content

Instantly share code, notes, and snippets.

@0V
Last active August 29, 2015 14:13
Show Gist options
  • Save 0V/5a6fa5de3df32d6790c1 to your computer and use it in GitHub Desktop.
Save 0V/5a6fa5de3df32d6790c1 to your computer and use it in GitHub Desktop.
/// <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