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

