// Szene:   S1: Ausgangsszene, Kugel (rot)  auf Ebene (weiss)
// Autor:   Jan Hannemann
// Datum:   26.06.1997

#include "colors.inc"                 // Vordefinierte Farben

sphere {
      <0,0,0>,1.5                     // Kugel: Zentrum im Ursprung, Radius 1,5
      pigment {colour Red }           // Farbe der Kugel
      finish { ambient 0.6 }          // Hintergrundhelligkeit
}

light_source { < 2,  5, 8> colour White }

camera {
	location <20, 0, 10>            // Standpunkt
	direction 4*z                   // Zoom
  	sky z                           // Sonst ist die Y-Achse oben
	look_at <0,0,0>                 // VRP
}

plane {
      -1*z                            // Plane: Normalenvektor
      1.5                             // Abstand zu <0,0,0>
      pigment { color  White }        // Farbe der Ebene
      finish { ambient 0.3 }          // Hintergrundhelligkeit
}

