def VC(voice): voice = score["Cello.Music"] music = library.make_eighth_notes(accumulator.get(1, 6)) voice.extend(music) music = library.make_cello_cell_rhythm(accumulator.get(7, 11)) voice.extend(music) baca.append_anchor_note_function(voice)
def V1(voice): voice = score["Violin.1.Music"] music = library.make_clouded_pane_rhythm(accumulator.get(1, 8)) voice.extend(music) music = baca.make_mmrests(accumulator.get(9, 12), head=voice.name) voice.extend(music) music = library.make_clouded_pane_rhythm(accumulator.get(13, 22)) voice.extend(music) music = library.make_flight_rhythm( accumulator.get(23, 28), "C", 0, start=0, ) voice.extend(music) music = baca.make_repeat_tied_notes(accumulator.get(29)) voice.extend(music) music = library.make_flight_rhythm( accumulator.get(30, 35), "C", 0, start=1, ) voice.extend(music) music = baca.make_mmrests(accumulator.get(36), head=voice.name) voice.extend(music) music = library.make_eighth_notes(accumulator.get(37, 38)) voice.extend(music) music = baca.make_mmrests(accumulator.get(39), head=voice.name) voice.extend(music)
def VC(voice): voice = score["Cello.Music"] music = baca.make_repeat_tied_notes( accumulator.get(1, 4), do_not_rewrite_meter=True ) voice.extend(music) rhythm_maker = rmakers.bind( rmakers.assign( make_vc_waves, abjad.index([1, 2, 3]), ), rmakers.assign( make_repeat_tied_notes, ), ) music = rhythm_maker(accumulator.get(5, 10)) voice.extend(music) music = baca.make_repeat_tied_notes( accumulator.get(11, 14), do_not_rewrite_meter=True ) voice.extend(music) rhythm_maker = rmakers.bind( rmakers.assign( make_vc_waves, abjad.index([1, 2, 3]), ), rmakers.assign( make_eighth_notes, abjad.index([4, 5]), ), rmakers.assign( make_repeat_tied_notes, ), ) music = rhythm_maker(accumulator.get(15, 20)) voice.extend(music) music = library.make_eighth_notes(accumulator.get(21, 25)) voice.extend(music) music = baca.make_mmrests(accumulator.get(26), head=voice.name) voice.extend(music)
def VC(voice): voice = score["Cello.Music"] music = baca.make_repeat_tied_notes(accumulator.get(1, 5)) voice.extend(music) music = library.make_eighth_notes(accumulator.get(6)) voice.extend(music) music = baca.make_repeat_tied_notes(accumulator.get(7, 31)) voice.extend(music) music = baca.make_mmrests(accumulator.get(32), head=voice.name) voice.extend(music) music = library.make_clouded_pane_rhythm(accumulator.get(33, 34)) voice.extend(music) music = baca.make_mmrests(accumulator.get(35), head=voice.name) voice.extend(music) music = baca.make_repeat_tied_notes(accumulator.get(36, 37)) voice.extend(music) music = baca.make_notes(accumulator.get(38, 46)) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(47, 51), "A", -1, 0, ) voice.extend(music) music = library.make_taper_rhythm( accumulator.get(52), (1, 1), ) voice.extend(music) music = library.make_clouded_pane_rhythm(accumulator.get(53, 54)) voice.extend(music) music = library.make_taper_rhythm( accumulator.get(55), (1, 1), ) voice.extend(music) music = baca.make_mmrests(accumulator.get(56), head=voice.name) voice.extend(music)
def VC(voice): voice = score["Cello.Music"] music = baca.make_repeat_tied_notes(accumulator.get(1)) voice.extend(music) music = library.make_desynchronization_rhythm( accumulator.get(2, 9), 4, [-1], ) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(10, 21), "C", -3, 0, ) voice.extend(music) music = library.make_desynchronization_rhythm( accumulator.get(22, 27), 4, [-1], ) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(28, 37), "C", -3, 0, ) voice.extend(music) music = library.make_desynchronization_rhythm( accumulator.get(38, 42), 4, [-1], ) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(43, 50), "C", -3, 0, ) voice.extend(music) music = library.make_desynchronization_rhythm( accumulator.get(51, 54), 4, [-1], ) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(55, 60), "C", -3, 0, ) voice.extend(music) music = library.make_desynchronization_rhythm( accumulator.get(61, 63), 4, [-1], ) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(64, 67), "C", -3, 0, ) voice.extend(music) music = library.make_desynchronization_rhythm( accumulator.get(68, 69), 4, [-1], ) voice.extend(music) music = library.make_trajectory_rhythm( accumulator.get(70, 71), "C", -3, 0, ) voice.extend(music) music = baca.make_mmrests(accumulator.get(72), head=voice.name) voice.extend(music) music = library.make_eighth_notes(accumulator.get(73, 87)) voice.extend(music) music = baca.make_repeat_tied_notes(accumulator.get(88, 92)) voice.extend(music)
def make_eighth_notes(time_signatures): return library.make_eighth_notes(time_signatures)