//Ejemplo de prueba para una escena vista 3D
//Por: Mario H Tiburcio Z

#include "colors.inc"
#include "librerias.inc"

camera {
  location <6,4,-6>
  look_at <0,0,0>
}
background { color Cyan}
light_source {<6,5,-4> color White shadowless}

/*box{
  <0,0,0>,<1,1,1>
  pigment {color Cyan}
  matrix <
  2,0,0,
0,2,0,
0,0,2,
0,0,0
>
}*/

object{
  Cubillo(Green)
matrix <
    1,0,0,
0,2,0,
0,0,1,
0,0,0
>
}
//plane  { y,-1 pigment {checker Red White}}
//ejes3D

