-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.mdl
48 lines (47 loc) · 847 Bytes
/
script.mdl
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
// BODY
push
rotate y -30
move 250 250 0
box -100 125 50 200 250 100
// HEAD
push
rotate y 90
move 0 175 0
sphere 0 0 0 50
pop
// LEFT ARM
push
move -100 125 0
rotate x -45
box -40 0 40 40 100 80
// LEFT LOWER ARM
push
move -20 -100 0
box -10 0 10 20 125 20
pop
pop
// RIGHT ARM
push
move 100 125 0
rotate x -45
box 0 0 40 40 100 80
// RIGHT LOWER ARM
push
move 20 -100 0
rotate x -20
box -10 0 10 20 125 20
pop
pop
// LEFT LEG
push
move -100 -125 0
box 0 0 40 50 120 80
pop
// RIGHT LEG
push
move 100 -125 0
box -50 0 40 50 120 80
pop
pop
display
// vim: ft=c: