// Cruise / Nebula '02.03 // By Tsutomu HIGO E-mail: nj2t-hg@asahi-net.or.jp #version 3.1; global_settings { max_trace_level 6 assumed_gamma 2.2 } // LENS EFFECTS // The lens effects include file containing "LENS.INC" // by Chris Colefax is downloaded from The POVRay Include Files Page // at http://www.geocities.com/SiliconValley/Lakes/1434/lenseffects.html #declare effect_location = <0.20, -0.21, 0.7>; #declare effect_type = "Rainbow" #include "LENS.INC" //Nebula // "nebula.png"'s original file is // downloaded from Hubble Space Telescope Public Pictures // at http://oposite.stsci.edu/pubinfo/pr/1995/44.html plane { z, 0 hollow on clipped_by { box { <-1, -1, -1>, <1, 1, 1> } } texture { pigment { image_map { png "nebula.png" map_type 0 once interpolate 2 } } } finish { ambient 0.7 } translate <-0.5, -0.5, 0.75> rotate <0, 0, 0> } light_source { <-500, -500, -500> colour rgb <1,1,1> }