mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-13 06:38:31 +00:00
9 lines
269 B
JavaScript
9 lines
269 B
JavaScript
function splitLanes(haps) {
|
|
// TODO: split haps into multiple arrays so that no overlapping events are in the same array
|
|
// also make sure the lanes are packed as tight as possible
|
|
// use logic analogous to drawLine
|
|
return [haps];
|
|
}
|
|
|
|
export default splitLanes;
|