mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 14:18:31 +00:00
21 lines
801 B
JavaScript
21 lines
801 B
JavaScript
import {Pattern, timeCat} from "../_snowpack/link/strudel.js";
|
|
import bjork from "../_snowpack/pkg/bjork.js";
|
|
import {rotate} from "../_snowpack/link/util.js";
|
|
const euclid = (pulses, steps, rotation = 0) => {
|
|
const b = bjork(steps, pulses);
|
|
if (rotation) {
|
|
return rotate(b, -rotation);
|
|
}
|
|
return b;
|
|
};
|
|
Pattern.prototype.euclid = function(pulses, steps, rotation = 0) {
|
|
return this.struct(euclid(pulses, steps, rotation));
|
|
};
|
|
Pattern.prototype.euclidLegato = function(pulses, steps, rotation = 0) {
|
|
const bin_pat = euclid(pulses, steps, rotation);
|
|
const firstOne = bin_pat.indexOf(1);
|
|
const gapless = rotate(bin_pat, firstOne).join("").split("1").slice(1).map((s) => [s.length + 1, true]);
|
|
return this.struct(timeCat(...gapless)).late(firstOne / steps);
|
|
};
|
|
export default euclid;
|