// Cruise / Venus '02.03 // By Tsutomu HIGO E-mail: nj2t-hg@asahi-net.or.jp // Based on the data from The Nine Planets at http://www.nineplanets.org/ #version 3.1; global_settings { max_trace_level 6 assumed_gamma 2.2 } // STARFIELD BACKGROUND // The galaxy include file containing "GALAXY.BG" and "Galaxy.sf" // by Chris Colefax is downloaded from The POVRay Include Files Page // at http://www.geocities.com/SiliconValley/Lakes/1434/galaxy.html #declare galaxy_bgstars = 2; #declare galaxy_bgnebula = false; #declare galaxy_nebula_sphere = false; #include "GALAXY.BG" #declare star_count = 15000; //star_count = 150000; #declare star_scale = 0.1; #include "Galaxy.sf" camera { location <100, -30, 3> look_at <0, 4.7, 1.5> angle 12.5 } union { //Sun light_source { <108200, 0, 0> color rgb <1.5, 1.5, 1.4> } //Venus // "p45187l.png"'s original file is // downloaded as New Magellan mosaic cylindrical 39300k tiff // at ftp://ftp.jpl.nasa.gov/pub/images/hi-res/p45187.tif // from http://www.nineplanets.org/pxvenus.html sphere { <0, 0, 0> 6.0518 pigment{ image_map { png "p45187l.png" map_type 1 } } finish { ambient 0.3 } rotate y*290 rotate x*177.36 } rotate x*-200 scale 8 translate <-50,-21,-5> }