Package Exports
- @strudel.cycles/core
- @strudel.cycles/core/dist/index.js
- @strudel.cycles/core/dist/index.mjs
- @strudel.cycles/core/euclid.mjs
- @strudel.cycles/core/util.mjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@strudel.cycles/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@strudel.cycles/core
DEPRECATION NOTE: This package is old and won't get any updates! The newer version goes by the name of @strudel/core.
This package contains the bare essence of strudel.
Install
npm i @strudel.cycles/core --saveExample
import { sequence } from '@strudel.cycles/core';
const pattern = sequence('a', ['b', 'c']);
const events = pattern.queryArc(0, 1);
const spans = events.map(
(event) => `${event.value}: ${event.whole.begin.toFraction()} - ${event.whole.end.toFraction()} `,
);yields:
a: 0 - 1/2
b: 1/2 - 3/4
c: 3/4 - 1
a: 1 - 3/2
b: 3/2 - 7/4
c: 7/4 - 2