//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 {<5,2,0> color White}
light_source {<6,5,-4> color White shadowless}

/*box{
  <0,0,0>,<1,1,1>
  pigment {color Orange}
  matrix <
   2,0,0,
   0,2,0,
   0,0,2,
   0,0,0
  > 

}*/

object{
Cubillo( Magenta)
matrix <
   1,0,0,
   0,2,0,
   0,0,1,
   0,0,0
  > 
}
//plane  { y,-1 pigment {checker Orange White }}
ejes3D

