環境設定

 カメラと光源の位置などを設定します。
 //**********************************************************************************
  camera { angle 60 location -200*z look_at 0 }
  light_source { < 300, 0, -1000 > color rgb 1*0.5 shadowless }
  light_source { < 0, 450, -1000 > color rgb 1*0.8 }
  light_source { < 0, 0, -1000 > color rgb 1*0.5 shadowless }
 //**********************************************************************************
 光源による影を物体に反映させないために shadowless を指定しています。