Minkowski test code.
[voro++.git] / trunk / examples / no_release / rad_test.pov
blob68584add904a030d0820aa1367452423c603f167
1 #version 3.6;
3 // Right-handed coordinate system in which the z-axis points upwards
4 camera {
5 location <30,-50,25>
6 sky z
7 right -0.05*x*image_width/image_height
8 up 0.05*z
9 look_at <0,0,0>
12 // White background
13 background{rgb 1}
15 // Two lights with slightly different colors
16 light_source{<-8,-20,30> color rgb <0.77,0.75,0.75>}
17 light_source{<25,-12,12> color rgb <0.38,0.40,0.40>}
19 // Radius of the Voronoi cell network
20 #declare r=0.008;
22 // Voronoi cells
23 union{
24 #include "FRAME"
25 pigment{rgb <1,0.4,0.45>} finish{specular 0.5 ambient 0.42}