/* -------------------------- Entry: 0012 WWW: http:// Title: Starfern Author: Samuel Benge This image is composed of a single pigment mapped to a plane. The pigment was created by recursively adding a 'boxed' pattern to itself using 'pigment_pattern' and 'pigment_map'. ---------------------------*/ // startdust.pov // April 12, 2004 global_settings{assumed_gamma 1} camera{ orthographic right x*1 up y*1 location y look_at 0 } #declare part= pigment{ boxed poly_wave 4 } plane{y,0 #local V=0; #while(V<=11) #declare part= pigment{ pigment_pattern{part} pigment_map{ [0 part translate z*.75 scale .55 rotate y*45 ] [1 rgb 1] } translate x*.3 scale .85 rotate y*-35 } #local V=V+1; #end pigment{ pigment_pattern{part} translate z*-.75 scale 1.5 color_map{ [0 rgb 0] [1 rgb<.2 1 2>] } } finish{ambient 1} }