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
|
// Bob 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;
};
// Left Eyebrow
Sphere {
position = -1.25 -6 1.75;
rotate = 30.0 0.0 1.0 0.0;
scale = 1.5 0.5 0.5;
radius = 0.6;
color = 0.0 0.0 0.0 1.0;
};
// Right Eyebrow
Sphere {
position = 1.25 -6 1.75;
rotate = -30.0 0.0 1.0 0.0;
scale = 1.5 0.5 0.5;
radius = 0.6;
color = 0.0 0.0 0.0 1.0;
};
@END@
|