ftp://ftp.smr.ru/pub/0/FreeBSD/releases/distfiles/xscreensaver-3.16.tar.gz
[xscreensaver] / hacks / images / bubbles / blue.pov
1 #include "colors.inc"
2 #include "shapes.inc"
3 #include "textures.inc"
4
5 /* The following make the field of view as wide as it is high
6  * Thus, you should have the -W and -H command line options
7  * equal to each other. */
8 camera {
9         location <5.8, 0, 0>
10         up <0, 1, 0>
11         right <1, 0, 0>
12         look_at <0, 0, 0>
13 }
14
15 sphere {
16         <0,0,0>, 2.5
17         texture { Blue_Agate 
18         scale <0.7, 0.7, 0.7> }
19         finish { phong 1 }
20 }
21
22 light_source {<6, 1, 0> color White}