20 minutes composition time from scratch, not counting final render time.
povray 3.6 with DSL-N linux on a SanDisk USB pen drive
Probably could have looked better at higher altitude but i gotta move on.
Code below:
camera{location<0,1.2,2> look_at <0,0,4> angle 40}
#declare rrr=seed(123);
light_source{<0,100,0> color rgb 1}
blob{
threshold 0.2
#declare n=0;
#while(n<30000)
sphere{0, .1,.1 translate}
#declare n=n+1;
#end
pigment{crackle
pigment_map{
[0 green 0.9]
[1 rgb <0.15,0.65,0.15>]}
scale 0.03}
normal{bumps scale 0.1}
}
box{-100,<100,0,100>
pigment{blue 1}
normal{bumps scale 0.031}
finish{reflection 0.3} }
background{color rgb <0.7,0.7,0.9>}
No comments:
Post a Comment