File: blob.primitive

package info (click to toggle)
blobandconquer 1.07-dfsg-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 104,944 kB
  • ctags: 3,385
  • sloc: cpp: 38,991; ansic: 362; makefile: 186
file content (30 lines) | stat: -rw-r--r-- 286 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
// Blob Model

// Body
Sphere {

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

};

// Left Eye
Sphere {

	position = -1 -2.85 0;
	radius = 0.6;
	color = 0.0 0.0 0.0 1.0;

};

// Right Eye
Sphere {

	position = 1 -2.85 0;
	radius = 0.6;
	color = 0.0 0.0 0.0 1.0;

};

@END@