Strip extra spaces from code.
[voro++.git] / trunk / examples / interface / odd_even.pov
blob669ede81c34c21c484fdf1eeb6c6d425f37ca8e1
1 #version 3.6;
3 #include "colors.inc"
4 #include "metals.inc"
5 #include "textures.inc"
7 global_settings {
8 max_trace_level 64
11 camera {
12 location <15,-30,10>
13 sky z
14 right -0.033*x*image_width/image_height
15 up 0.033*y
16 look_at <0,0,0>
19 background{rgb 1}
21 light_source{<-4,-20,35> color rgb <0.72,0.7,0.7>}
22 light_source{<20,-10,5> color rgb <0.4,0.42,0.42>}
24 #declare r=0.01;
26 #declare f1=finish{reflection 0.17 specular 0.3 ambient 0.42}
27 #declare t_odd=texture{pigment{rgb <0.8,0.8,0.8>} finish{f1}}
28 #declare t_even=texture{pigment{rgb <0.2,0.2,0.2>} finish{f1}}
30 intersection{
31 #include "odd_even_pl.pov"
34 union{
35 #include "odd_even_v.pov"
36 pigment{rgb <0.9,0.1,0.15>}
37 finish{reflection 0.25 specular 0.4 ambient 0.3}