Hi,
I'm trying to play an "inverted" euclid pattern. That's the result I'm looking for:
[strudel]
setcpm(160/4)
$: note("c3").euclid(3,8).sound("xylophone_hard_ff").clip(1)
$: note("c3").struct("0 1 1 0 1 1 0 1").sound("xylophone_soft_ff").clip(1)
[/strudel]
However, I do not want to explicitely write the inverted pattern. I tried
[strudel]
setcpm(160/4)
$: note("c3").euclid(3,8).sound("xylophone_hard_ff").clip(1)
$: note("c3").euclid(3,8).invert().sound("xylophone_soft_ff").clip(1)
[/strudel]
but it does not work. Any suggestions?