We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The issue right now is that operators like add are hard coded to add to the midi note.
add
add 0 7 12 13
We might want some concise way of adding to values like velocity, or duration.
otherwise we'll have a bunch of operators like
vel_add 60
or
dur_add 1
which honestly might be fine, since this is a domain specific language.
If we really want lensing, then we should support maybe something like
vel add 0 7 12 13
add vel 0 7 12 13
or a higher-order operator, like
(vel add) 0 7 12 13
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The issue right now is that operators like
add
are hard coded to add to the midi note.We might want some concise way of adding to values like velocity, or duration.
otherwise we'll have a bunch of operators like
or
which honestly might be fine, since this is a domain specific language.
If we really want lensing, then we should support maybe something like
or
or a higher-order operator, like
The text was updated successfully, but these errors were encountered: