diff options
author | Devine Lu Linvega <[email protected]> | 2019-01-18 14:29:33 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-01-18 14:29:33 +1200 |
commit | 5f9e990b227da6fc1f876ce4d4f0eebbb3c94e0d (patch) | |
tree | 14c6782c04b52ba0ac9e14adf63e160366648cc4 /TUTORIAL.md | |
parent | 56529c3a1ed4f05e8d1c9c9a80169d78bb84290c (diff) | |
download | Orca-5f9e990b227da6fc1f876ce4d4f0eebbb3c94e0d.tar.gz Orca-5f9e990b227da6fc1f876ce4d4f0eebbb3c94e0d.zip |
Updated Dotgrid guide
Diffstat (limited to 'TUTORIAL.md')
-rw-r--r-- | TUTORIAL.md | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/TUTORIAL.md b/TUTORIAL.md index 6cb6615..8f8e041 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -27,12 +27,23 @@ The midi instrument should begin receiving midi notes as soon as the Orca window ## Dotgrid -To send [UDP](https://github.com/hundredrabbits/Orca#udp) to [Dotgrid](http://github.com/hundredrabbits/Dotgrid), you need to bang the UDP node `;` with 3 different commands. +To send [UDP](https://github.com/hundredrabbits/Orca#udp) to [Dotgrid](http://github.com/hundredrabbits/Dotgrid), you need to bang the UDP node `;` with different [commands](https://github.com/hundredrabbits/Dotgrid/blob/master/desktop/sources/scripts/listener.js). - `;0`, clear layer **#1**. - `;0l1234`, add a line from `1,2` to `3,4`. - `;*`, draw. +Here's a list of supported operations. + +``` +;0 // Clear Layer 1 +;0l1234 // Draw Line from 1,2 to 3,4 +;0c1234 // Draw Clockwise Arc from 1,2 to 3,4 +;0r1234 // Draw Reverse Arc from 1,2 to 3,4 +;0r**78 // Draw Line from last coordinate to 7,8 +;* // Draw +``` + # Patterns Here's a collection of recurring patterns in the design of Orca machines. |