// Last edited on DATE TIME by stolfi
// Vitor Sexto Bernardes  -  RA 010063

// ======================================================================

#declare ctr = < 40, 0, 20 >;
#declare camDir = (< 0, 80, 50 >) - (< 40, 0, 20 >);

camera {
  location   ctr + 1.00*camDir
  right      -1.00*x
  up         0.75*y
  sky        z
  look_at    ctr
}
 

// ======================================================================
// FONTES DE LUZ

light_source {
  10 * < 0, 20, 20 >              // Posição da lâmpada.
  color rgb 1.2 * < 1.00, 1.00, 1.00 >   // Intensidade e corda luz.
} 

// ======================================================================
// DESCRIÇÃO DA CENA 

#include "textures.inc"

#declare chao =
  plane {
    <0, 0, 1>, 1
    pigment {
//      checker pigment { rgb <0,0,0> }, pigment { rgb <1,1,1> } scale <3,3,3>
      granite scale <8,8,8>
    }
    finish { ambient 0.2 specular .3 reflection .2}
  }


// ======================================================================
// CENA FINAL

object { chao }

#include "dados.inc"