Strip extra spaces from code.
[voro++.git] / branches / dynamic / examples / walls / cylinder.pov
blob827b7e436cf71fe9f9f9240f15740de4157bacf3
1 #version 3.6;
3 #include "colors.inc"
4 #include "metals.inc"
5 #include "textures.inc"
7 camera {
8 location <20,30,-50>
9 right 0.4*x*image_width/image_height
10 up 0.4*y
11 look_at <0,9.25,0>
14 background{rgb 1}
16 light_source{<-8,30,-20> color rgb <0.77,0.75,0.75>}
17 light_source{<20,5,-15> color rgb <0.38,0.40,0.40>}
19 #declare r=0.08;
20 #declare s=0.5;
22 union{
23 #include "cylinder_p.pov"
24 rotate <270,0,0>
25 pigment{rgb <1,0.95,0.5>} finish{reflection 0.1 specular 0.3 ambient 0.42}
28 union{
29 #include "cylinder_v.pov"
30 rotate <270,0,0>
31 pigment{rgb <0.5,0.8,1>} finish{specular 0.5 ambient 0.42}