-
Notifications
You must be signed in to change notification settings - Fork 1
/
jan2014_performance
93 lines (68 loc) · 872 Bytes
/
jan2014_performance
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/Dance/
Set up ()
dancera centre, right
dancer centre, left
movement ()
move 1 (dancer a = rotate)
(dancer b =push)
move2 (dancer a = pull) (dancer b=swing)
move3 (dancer a =static) (dancer b =wave)
move4 (dancer a =throw)
(dancer b = twist)
loop ()
{
move4
move1
move3
move2
}
end loop.
run ()
{
move1
move4
move4
move1
move2
move3
move1
move2
move3
move4
}
if...then ()
{
if dancer b (move3) then dancer a (move2);
}
quality()
{
quality1 = soft
quality2 = indirect
quality3 = sudden
quality4 = strong
}
{
dancer a function.loop(quality4)
dancer b move2 quailty.switch()
}
right.left()
{
move1.right
move2.left
move3.left
move4.right
}
{
if dancer a (move4)Right(); then dancer b (move4)Left();
}
{
if dancer a (move1) = 180 then dancer b (move1)Soft();
}
run loop()
{
move1; quality1
move2; quality4
move2; quality1
move4; quality1
}
dance. end