Files
@ b78fb286a7c3
Branch filter:
Location: light9/show/dance2014/effectClass.n3 - annotation
b78fb286a7c3
2.7 KiB
text/plain
much bigger points to grab in CC
Ignore-this: a8ca7a87e6956ad727d3ab2820cb9151
Ignore-this: a8ca7a87e6956ad727d3ab2820cb9151
02bd7c118cd8 02bd7c118cd8 02bd7c118cd8 02bd7c118cd8 02bd7c118cd8 02bd7c118cd8 02bd7c118cd8 19e8a57b060e 19e8a57b060e 6c4981f61bf8 6c4981f61bf8 6c4981f61bf8 6c4981f61bf8 6c4981f61bf8 6c4981f61bf8 02bd7c118cd8 02bd7c118cd8 19e8a57b060e 8a77bb6871ff 02f74275a21f 02f74275a21f 02f74275a21f 02f74275a21f 02f74275a21f 02f74275a21f 6c4981f61bf8 6c4981f61bf8 02f74275a21f 6c4981f61bf8 6c4981f61bf8 5e7acb866b9f 5e7acb866b9f 5e7acb866b9f 5e7acb866b9f 5e7acb866b9f 5e7acb866b9f 5e7acb866b9f 8a77bb6871ff 8a77bb6871ff 02f74275a21f 8a77bb6871ff 5fc6a68b9d76 19e8a57b060e 5fc6a68b9d76 0e0776d3bd74 0e0776d3bd74 1131e987234d 0e0776d3bd74 1131e987234d 1131e987234d 19e8a57b060e 1131e987234d 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 5fc6a68b9d76 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e 19e8a57b060e | @prefix : <http://light9.bigasterisk.com/> .
@prefix effect: <http://light9.bigasterisk.com/effect/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ch: <http://light9.bigasterisk.com/theater/piedmont/channel/> .
@prefix chase: <http://light9.bigasterisk.com/chase/> .
# when these are inserted, a curve called 'env' will be added to this
# code, so multiply by that. Also if you mention 'music' anywhere, an
# output 'music' will be set to the current song.
effect:cycFlash a :EffectClass;
rdfs:label "cycFlash";
:code "out = <http://light9.bigasterisk.com/show/dance2013/sub/cyc> * nsin(t*2) * env" .
# Notes for quneo pads:
# 48 49 50 51
# 44 45 46 47
# 40 41 42 43
# 36 37 38 39
effect:cycToMusic a :EffectClass; rdfs:label "cyc to music";
:quneoNote 36;
:code "out = <http://light9.bigasterisk.com/show/dance2013/sub/cyc> * music * env" .
effect:fullToMusic a :EffectClass; rdfs:label "full to music";
:quneoNote 38;
:code "out = <http://light9.bigasterisk.com/show/dance2013/sub/full> * music * env" .
effect:blacklight a :EffectClass;
rdfs:label "blacklight";
:quneoNote 37;
:code
"out = [env * p1, env * p2, env * p4]",
"p1 = <http://light9.bigasterisk.com/show/dance2013/sub/blue> * .3",
"p2 = Strip.solid('LR', (0,0,1))",
"p4 = Blacklight(1)"
.
effect:whiteLed a :EffectClass;
rdfs:label "whiteLed";
:code "out = Strip.solid('LR', (1,1,1)) * env" .
effect:slowColor a :EffectClass;
rdfs:label "slow color chase";
:quneoNote 37;
:code
"period = 5",
"r = <http://light9.bigasterisk.com/show/dance2013/sub/red> * nsin(t / period)",
"y = <http://light9.bigasterisk.com/show/dance2013/sub/yellow> * nsin((t+.3) / period)",
"b = <http://light9.bigasterisk.com/show/dance2013/sub/blue> * nsin((t+.6) / period)",
"out = [r*env,y*env,b*env]"
.
chase:backchase a :Chase; :channels (
<http://light9.bigasterisk.com/theater/piedmont/channel/b14-yel>
<http://light9.bigasterisk.com/theater/piedmont/channel/b15-red>
<http://light9.bigasterisk.com/theater/piedmont/channel/b21-edge>
<http://light9.bigasterisk.com/theater/piedmont/channel/b22-c>
<http://light9.bigasterisk.com/theater/piedmont/channel/b26-edge>
<http://light9.bigasterisk.com/theater/piedmont/channel/b32-red>
<http://light9.bigasterisk.com/theater/piedmont/channel/b34-yel>
) .
effect:backChase a :EffectClass;
rdfs:label "back chase";
:code "out = chase(t, names=backchase, ontime=.3, offset=-.11) * env" .
effect:backChaseSlower a :EffectClass;
rdfs:label "back chase slower";
:code "out = chase(t, names=backchase, ontime=.7, offset=-.11) * env" .
|