static public Pitch GetShiftedTone(this Pitch item, int amount) { return(item.GetShiftedSemitones(amount)); }
public Pitch GetPitch(Pitch root) { return(root.GetShiftedSemitones(offset)); }
static public Pitch GetShiftedCents(this Pitch item, int amount) { return(item.GetShiftedSemitones(amount / 100.0)); }
static public Pitch GetShiftedOctave(this Pitch item, int amount) { return(item.GetShiftedSemitones(amount * Pitch.Octave)); }