Strip extra spaces from code.
[voro++.git] / branches / exact / examples / extra / irregular.pov
blobac461b267ba015a9c1049eb9661422b96f183de4
1 #version 3.6;
2 #include "colors.inc"
3 #include "metals.inc"
4 #include "textures.inc"
6 camera {
7 location <0,-50,15>
8 sky z
9 right -0.25*x*image_width/image_height
10 up 0.25*y
11 look_at <0,0,0>
14 background{rgb 1}
16 light_source{<-16,-30,30> color rgb <0.77,0.75,0.75>}
17 light_source{<25,-16,8> color rgb <0.43,0.45,0.45>}
19 #declare r=0.05;
20 #declare s=0.5;
22 #declare particles=union {
23 #include "irregular_p.pov"
24 pigment{rgb 0.9} finish{reflection 0.2 specular 0.25 ambient 0.28 metallic}
27 union{particles translate <-4,0,0>}
28 union{particles translate <4,0,0>}
30 union{
31 #include "irregular_v.pov"
32 translate <4,0,0>
33 pigment{rgb <0.7,0.3,0.9>} finish{specular 0.5 ambient 0.42}