Exemplo n.º 1
0
 static public Pitch GetShiftedTone(this Pitch item, int amount)
 {
     return(item.GetShiftedSemitones(amount));
 }
Exemplo n.º 2
0
 public Pitch GetPitch(Pitch root)
 {
     return(root.GetShiftedSemitones(offset));
 }
Exemplo n.º 3
0
 static public Pitch GetShiftedCents(this Pitch item, int amount)
 {
     return(item.GetShiftedSemitones(amount / 100.0));
 }
Exemplo n.º 4
0
 static public Pitch GetShiftedOctave(this Pitch item, int amount)
 {
     return(item.GetShiftedSemitones(amount * Pitch.Octave));
 }