ftp://ftp.smr.ru/pub/0/FreeBSD/releases/distfiles/xscreensaver-3.16.tar.gz
[xscreensaver] / hacks / images / bubbles / glass.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 { Glass
18                 scale <0.7, 0.7, 0.7> 
19                 rotate y*clock
20                 normal {bumps 0.4   scale 0.1}  
21                 finish { Shiny }
22 #               finish { phong 0.4 }
23         }
24 }
25
26 light_source {<6, 7, 0> color White}
27 light_source {<6.1, 1, 0> color Blue}