// Szene:   S8: Beispiel für Spiegelung: Objekt als Spiegel
// Autor:   Jan Hannemann
// Datum:   26.06.1997

#include "colors.inc"          // Fuer die Farben
#include "textures.inc"        // Fuer die Oberflaechen

sphere {
	<0,0,0>, 1.5             // Kugel: Ursprung, Radius: 1,5
	texture {
            pigment {color Red}       // Rot gefaerbt
     	      finish {ambient 0.3 specular 1  roughness 0.01  reflection 0.3}
                               // Specular highlight: Helligkeitsverteilung
                               // Roughness: Groesse des Spots
                               // Reflection: Staerke der Reflektion
	}
}

sphere {
      <-3,3,0>, 1.5            // 2. Kugel, etwas verschoben (hinten links)
      texture {
            Mirror             // Spiegel-Oberflaeche
      }
      finish { ambient 0.9}    // Hintergrundhelligkeit
}

light_source {	<10, -2, 8>	 colour White }
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 <-1,1.2,0>       // VRP - Leicht veraendert
}

plane {
	-1*z                     // Plane: Normalenvektor
	1.5                      // Abstand zu <0,0,0>
      pigment{
              checker
                     color White
                     color Black
      }
      finish { ambient 0.2}
}

