<?xml version="1.0" encoding="ISO-8859-1" ?>
<scene>

  <atmosphere>
    <ambient_intensity r="0.2" g="0.2" b="0.2"/>
  </atmosphere>

  <surfaces>
  
    <surface name="purple">
      <ambient_color r="0.5" g="0.1" b="0.5"/>
      <diffuse_color r="0.5" g="0.1" b="0.5"/>
      <specular_color r="0.5" g="0.5" b="0.5" exponent="20"/>
    </surface>
    
    <surface name="grey">
      <ambient_color r="0.707" g="0.859" b="0.703"/>
      <diffuse_color r="0.707" g="0.859" b="0.703"/>
      <specular_color r="0.5" g="0.5" b="0.5" exponent="20"/>
      <reflectivity value="0.3"/>
    </surface>
    
    <surface name="green">
      <ambient_color r="0.707" g="0.859" b="0.703"/>
      <diffuse_color r="0.1" g="0.1" b="0.6"/>
      <specular_color r="0.5" g="0.5" b="0.5" exponent="20"/>
      <transparency value="1"/>
      <refraction_index value="1.05"/>
    </surface>
    
    <surface name="mirror">
      <ambient_color r="0.3" g="0.3" b="0.3"/>
      <diffuse_color r="0.3" g="0.3" b="0.3"/>
      <specular_color r="0.5" g="0.5" b="0.5" exponent="100"/>
      <reflectivity value="0.5"/>
    </surface>
    
  </surfaces>
  
  <objects>
  
    <sphere_object name="foo" surface="grey" radius="1.5">
      <position x="1.5" y="-0.5" z="3"/>
    </sphere_object>
    
    <sphere_object name="baz" surface="green" radius="1">
      <position x="-1.3" y="-1" z="5"/>
    </sphere_object>
    
    <plane_object name="glork" surface="purple" y="1" distance="-2">
    </plane_object>
    
    <box_object name="xyzzy" surface="mirror" x="4" y="4" z="4">
      <position x="-1.5" y="1" z="9.5"/>
      <rotation x="1" y="1" z="1" radians="1.5"/>
    </box_object>
    
  </objects>
  
  <lights>
  
    <point_light name="quux">
      <intensity r="1" g="1" b="1"/>
      <position x="5" y="10" z="2"/>
    </point_light>
    
  </lights>
  
  <cameras>  
  
    <camera name="bynt" depth="10" aperture="150" focus="5">
      <position x="0" y="1" z="0"/>
      <rotation x="1" y="0" z="0" radians="0.2"/>
    </camera>
  
  </cameras>
  
</scene>