File: eyeDroidCommander.primitive

package info (click to toggle)
blobandconquer 1.11-dfsg%2B20-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 89,664 kB
  • sloc: cpp: 39,032; ansic: 362; makefile: 142
file content (85 lines) | stat: -rw-r--r-- 892 bytes parent folder | download | duplicates (6)
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
// Eyedroid Model

// Body
Sphere {

	position = 0 0 0;
	radius = 3;
	color = 1.0 1.0 1.0 1.0;

};

// Bobble
Sphere {

	position = -5.25 0 6;
	radius = 1.25;
	color = 1.0 1.0 1.0 1.0;

};

// Bobble
Sphere {

	position = 5.25 0 6;
	radius = 1.25;
	color = 1.0 1.0 1.0 1.0;

};

// Stalk
Sphere {

	position = -10 0 5;
	radius = 4;
	scale = 0.1 0.1 1.0;
	color = 1.0 1.0 1.0 1.0;
	rotate = -35 0 1.0 0.0;

};

// Stalk
Sphere {

	position = 10 0 5;
	radius = 4;
	scale = 0.1 0.1 1.0;
	color = 1.0 1.0 1.0 1.0;
	rotate = 35 0 1.0 0.0;

};

// Eye
Sphere {

	position = 0 -2.4 0;
	radius = 1;
	color = 1.0 0.0 0.0 1.0;

};

// Cannon support
Box {

	position = 0 0 0;
	size = 20 1 1;
	color = 1.0 1.0 1.0 1.0;
};

// Left Cannon
Box {

	position = -5 0 0;
	size = 2 2 2;
	color = 1.0 1.0 1.0 1.0;
};

// Right Cannon
Box {

	position = 5 0 0;
	size = 2 2 2;
	color = 1.0 1.0 1.0 1.0;
};

@END@