// space station scene -- construction Nov.,1994 // camera { location <0, 1, -37.5> look_at <0,0,0> } light_source { <-7, 3.75, -38> color red 1 green 1 blue 1} // a shuttle #include "shuttle.inc" object{shuttle scale <0.012,0.012,0.012> rotate <-192,-100,-12> translate<.43,2.,-34.8> } // a blue planet // I wrote a fractal fortran program to produce clouds.gif, but you can use // any other clouds texture if you like sphere { <0,0,0> 40 pigment {image_map { gif "clouds.gif" map_type 1 interpolate 4} rotate <20,0,0> } translate <0,-38,0> } // a bundle of stars #include "stars.inc" #include "station.inc" object {station rotate <-25,10,-20> translate <0,0.75,-34.8>} // end