Tidal
Tidal copied to clipboard
Pattern language
These two patterns should produce the same results: ``` drawLine "{x ~ ~ x ~ ~ x ~, y ~ ~ }" drawLine "{x(3,8), y ~ ~}" ``` but the...
It'd nice to be able to reset the cycle count from within a pattern.. Ref: https://club.tidalcycles.org/t/week-4-lesson-2-random-marathon-rand-irand-mininotation-randomness-scramble-shuffle-choose-more/685/30?u=yaxu
Events are queried at the start of a frame. If one of those events causes the cps to decrease during a frame, then some of the events might occur outside...
**Is your feature request related to a problem? Please describe.** Autocomplete in Emacs would be nice, to save typing and reduce typos. **Describe the function/feature you'd like** When typing things,...
**feature** I was hoping to be able to capture the current state of a cycle so that I can pick it back up later. This would be useful for ramping...
**Describe the bug** select and selectF doesn't split the index equally. **To Reproduce** do let test = [ struct "t(16,16)" $ sound "bd" , struct "t(16,16)" $ sound "sn" ,...
I am building https://github.com/jwaldmann/tidal-fuzz-test to aid testing for robustness. It found: ``` ghci -XOverloadedStrings import Sound.Tidal.Context s "." *** Exception: Can't happen, feet are pre-processed. CallStack (from HasCallStack): error, called...
**Is your feature request related to a problem? Please describe.** In one of my workflows, tidalcycles is used to generate drum patterns. Right now, tidalcycles is the main orchestrator as...
E.g.: ``` let cFP :: Double -> Pattern String -> Pattern Double cFP d ps = innerJoin $ (cF d) ps ```
Trying to get the trigger function to work inside of shared variables. ```haskell --This works: do let var = (trigger 1 $ slow 2 envL) d1 $ sound "9b*2 9cp:4(5,8,)"...