// Ausprobieren von Texturen // A. Filler, 2003 // --------------------------------------------------------------- #version 3.5; // benötigte POV-Ray-Version #include "colors.inc" #include "textures.inc" #include "metals.inc" #include "golds.inc" #include "skies.inc" #include "stars.inc" #include "stones1.inc" #include "stones2.inc" #include "woods.inc" #declare intervall = 3; // Von der Kamera erfasster Bildausschnitt #declare winkel = - 60 ; // Winkel der Kamera zur x-Achse (in Grad) background {White} // Farbe des Hintergrundes // --------------------------------------------------------------------------- // Beschreibung der Kamera // --------------------------------------------------------------------------- camera { orthographic location <60*intervall*cos(winkel*pi/180), 20*intervall, 60*intervall*sin(winkel*pi/180)> right x*4/3*2.7*intervall up y*2.7*intervall look_at <0.0, -intervall/10, 0.0> } // --------------------------------------------------------------------------- // Lichtquellen // --------------------------------------------------------------------------- light_source { <2.5*intervall, 2*intervall, -5*intervall> color rgb <1, 1, 1> } light_source { <0,10*intervall,2*intervall> color rgb <1, 1, 1> } // --------------------------------------------------------------- // Beginnen Sie, Objekte in der Szene zu beschreiben. // *******************************************************************************