Thursday, June 29, 2006

Lunchtime render


Povray 3.6 in a live CD boot of Mediainlinux.
20 minutes creation time (not including final render).

camera {location <1,3,-4> look_at 0}
//light_source{<0,1000,0> color rgb 2}
light_source{<0,0,0> color rgb 1}
#declare RRR=seed(123);

blob{

#declare n=0;
#while(n<2000)

threshold 0.2

sphere{<1/rand(RRR),0,0>, .1, 1
rotate z*360*rand(RRR)
rotate x*360*rand(RRR)
}
#declare n=n+1;
#end
pigment{rgb <1,0.1,.1>}
finish{phong 0.9}
}


box {200000,-200000 hollow pigment {rgb 0 }finish{diffuse 0}
interior{ media {//emission .001
scattering {1, 0.1}
}}}

No comments: