tidalcycles / strudel

Web-based environment for live coding algorithmic patterns, incorporating a faithful port of TidalCycles to JavaScript
https://strudel.cc/
GNU Affero General Public License v3.0
582 stars 105 forks source link

pitchwheel visual #1041

Closed felixroos closed 2 months ago

felixroos commented 3 months ago

draws a circle where each hap is a line from the center to the circle, where the angle is determined by its position within the octave.

image
"<0,<6 7 9>,13,<17 20 22 26>>"
.fmap(v=>Math.pow(2,v/22))
.mul("<300 [300@3 200]>/8").freq()
.color('cyan')
._pitchwheel({
  //mode:'polygon',
  edo:22,
  root:300
})