Exemplo n.º 1
0
        private List <int> SimplifyDurations(List <int> durations)
        {
            var patty = new RythmPattern(durations);

            return(patty.RelativeDurations);
        }
Exemplo n.º 2
0
 public MelodyPattern(PitchPattern pitchPattern, RythmPattern rythmPattern) :
     this(pitchPattern.DeltaPitches, rythmPattern.RelativeDurations)
 {
 }