diff options
author | Devine Lu Linvega <[email protected]> | 2019-05-14 07:48:21 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-05-14 07:48:21 +0900 |
commit | 974e32e783057fc4d54dd42fa1ca76b57db45021 (patch) | |
tree | 946134828a882f210dd24a31bbacc0cf0a7d495f /README.md | |
parent | 0aaf99865a6b2ef272202ca851842d10b38611f4 (diff) | |
download | Orca-974e32e783057fc4d54dd42fa1ca76b57db45021.tar.gz Orca-974e32e783057fc4d54dd42fa1ca76b57db45021.zip |
Improved docs
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 57 |
1 files changed, 29 insertions, 28 deletions
@@ -23,44 +23,45 @@ npm start ## Operators -- `A` **add**: Outputs the sum of inputs. -- `B` **bounce**: Bounces between two values based on the runtime frame. -- `C` **clock**: Outputs a constant value based on the runtime frame. -- `D` **delay**: Bangs on a fraction of the runtime frame. +- `A` **add**(*a* b): Outputs sum of inputs. +- `B` **bounce**(*rate* mod): Outputs values between inputs. +- `C` **clock**(*rate* mod): Outputs modulo of frame. +- `D` **delay**(*rate* mod): Bangs on modulo of frame. - `E` **east**: Moves eastward, or bangs. -- `F` **if**: Bangs if both inputs are equal. -- `G` **generator**: Writes distant operators with offset. -- `H` **halt**: Stops southward operators from operating. -- `I` **increment**: Increments southward operator. -- `J` **jumper**: Outputs the northward operator. -- `K` **konkat**: Outputs multiple variables. -- `L` **loop**: Loops a number of eastward operators. -- `M` **multiply**: Outputs the product of inputs. +- `F` **if**(*a* b): Bangs if inputs are equal. +- `G` **generator**(*x* *y* *len*): Writes operators with offset. +- `H` **halt**: Halts southward operator. +- `I` **increment**(*step* mod): Increments southward operator. +- `J` **jumper**(*val*): Outputs northward operator. +- `K` **konkat**(*len*): Reads multiple variables. +- `L` **loop**(*step* *len* val): Moves eastward operators. +- `M` **multiply**(*a* b): Outputs product of inputs. - `N` **north**: Moves Northward, or bangs. -- `O` **read**: Reads a distant operator with offset. -- `P` **push**: Writes an eastward operator with offset. -- `Q` **query**: Reads distant operators with offset. -- `R` **random**: Outputs a random value. +- `O` **read**(*x* *y* read): Reads operator with offset. +- `P` **push**(*len* *key* val): Writes eastward operator. +- `Q` **query**(*x* *y* *len*): Reads operators with offset. +- `R` **random**(*min* max): Outputs random value. - `S` **south**: Moves southward, or bangs. -- `T` **track**: Reads an eastward operator with offset. -- `U` **uclid**: Bangs at a rate defined by the [Euclidean pattern](http://www-cgrl.cs.mcgill.ca/~godfried/publications/banff.pdf). -- `V` **variable**: Reads and write globally available variables. +- `T` **track**(*key* *len* val): Reads eastward operator. +- `U` **Uclid**(*step* max): Bangs on Euclidean rhythm. +- `V` **variable**(*write* read): Reads and writes variable. - `W` **west**: Moves westward, or bangs. -- `X` **write**: Writes a distant operator with offset. -- `Y` **jymper**: Outputs the westward operator. -- `Z` **lerp**: Transitions southward operator toward input. +- `X` **write**(*x* *y* val): Writes operator with offset. +- `Y` **jymper**(*val*): Outputs westward operator. +- `Z` **Lerp**(*rate* target): Transitions operator to input. - `*` **bang**: Bangs neighboring operators. -- `#` **comment**: Comments a line, or characters until the next hash. +- `#` **comment**: Halts a line. ### IO #### Send -- `:` **midi**: Sends a MIDI note. -- `!` **cc**: Sends a MIDI CC value. -- `%` **mono**: Sends a Monophonic MIDI value. -- `;` **udp**: Sends a UDP message. -- `=` **osc**: Sends a OSC message. +- `:` **midi**(channel octave note velocity length): Sends a MIDI note. +- `%` **mono**(channel octave note velocity length): Sends monophonic MIDI note. +- `!` **cc**(channel knob value): Sends MIDI control change. +- `;` **udp**: Sends UDP message. +- `=` **osc**(*path*): Sends OSC message. +- `:` **mono**: Receive MIDI note. #### Receive |