1#version 3.6;
2#include "colors.inc"
3#include "metals.inc"
4#include "textures.inc"
5
6camera {
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>
12}
13
14background{rgb 1}
15
16light_source{<-16,-30,30> color rgb <0.77,0.75,0.75>}
17light_source{<25,-16,8> color rgb <0.43,0.45,0.45>}
18
19#declare r=0.05;
20#declare s=0.5;
21
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}
25}
26
27union{particles translate <-4,0,0>}
28union{particles translate <4,0,0>}
29
30union{
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}
34}
35