summaryrefslogtreecommitdiffstats
path: root/hacks/images/bubbles/jade.pov
blob: 7c1cb02382d4be418c5c40593fd0b3253db80073 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "colors.inc"
#include "shapes.inc"
#include "textures.inc"

/* The following make the field of view as wide as it is high
 * Thus, you should have the -W and -H command line options
 * equal to each other. */
camera {
        location <5.8, 0, 0>
	up <0, 1, 0>
	right <1, 0, 0>
        look_at <0, 0, 0>
}

sphere {
        <0,0,0>, 2.5
	texture { Jade
	scale <0.7, 0.7, 0.7> 
	rotate y*clock }
	finish { phong 0.4 }
}

light_source {<6, 1, 0> color White}
light_source {<6.1, 1, 0> color White}