blob: d7be0b5383baec33499a1c9389e84a7f92912e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<canvas description="Off and on template ©Rotor 2013">
<node ID="01" type="audioLoader">music track to analyse
<output ID="01" type="graph">beat (sawtooth)</output>
<output ID="03" type="graph">excitement</output>
</node>
<node ID="02" type="imageLoader" thumbnail="performance1.jpg">performance take 1
<output ID="01" type="RGB"/>
</node>
<node ID="03" type="imageLoader" thumbnail="performance1.jpg">performance take 2
<output ID="01" type="RGB"/>
</node>
<node ID="04" type="==">1
<input ID="01" fromID="01.01" type="graph"/>
<output ID="02" type="graph"/>
</node>
<node ID="05" type="toggle switch" >
<input ID="01" fromID="02.01" type="RGB"/>
<input ID="02" fromID="03.01" type="RGB"/>
<input ID="03" fromID="04.02" type="graph"/>
<output ID="04" type="RGB"/>
</node>
<node ID="06" type="frequency/offset" frequency="0.25" offset="1">
<input ID="01" fromID="01.01" type="graph"/>
<output ID="02" type="graph"/>
</node>
<node ID="07" type="*">2
<input ID="01" fromID="06.02" type="graph"/>
<output ID="02" type="graph"/>
</node>
<node ID="08" type="==">1
<input ID="01" fromID="06.02" type="graph"/>
<output ID="02" type="graph"/>
</node>
<node ID="09" type="videoBank" mode="pingpong">
<clip ID="01" file="sample.mov"/>
<input ID="01" fromID="08.02" type="graph"/>cycle switch
<output ID="02" type="RGB"/>
</node>
<node ID="10" type="shape" mode="triangle">
<input ID="01" fromID="07.02" type="graph"/>scale
<output ID="02" type="LUM"/>
</node>
<node ID="11" type="channel merge" >
<input fromID="02.01" type="scale"/>
<output ID="09" type="LUM"/>
</node>
</canvas>
//node IDs - specific to the patch or universal (can they be renumbered?)
//connector nodes - all in the patch or just mention the ones that are used
//connector IDs - to identify connectors? seperate cIDs within a subcanvas? so- input fromID="02.01"
//how do we identify a connector? -by type (seperate for each connector) - or by ID - or by description?
//OR have a unique identifier for every node?
//
|