|
|
The full mpeg animation is on YouTube at
http://www.youtube.com/watch?v=drj-ToCDPVE With the exceptions of the
bear's ears and hat (modeled with sPatch) and the balloon (modeled with
Moray) everything was done with POV-Ray. The bear's body is a blob object.
The Julia fractal and media were done beforehand and added as a series of
image_maps on a box in the background, like this:
#declare myframe=78+frame_number ;
#declare s1="frac";
#declare s2=str(myframe,4,0);
#declare s3=".png";
#declare aniframe=concat(s1,s2,s3);
box{<0,0,0>,<512,384,1>
pigment{
image_map { png aniframe map_type 0 interpolate 0 }
scale <512,384,1>
}
translate <-256,-192,500>
}
Post a reply to this message
Attachments:
Download 'bear21105.png' (61 KB)
Preview of image 'bear21105.png'
|
|