//Projeto Final MC930
//Nome: Ricardo Yugo Ito  RA 971506
//Monumento: Biblioteca Central - BC

background { color rgb <0.4, 0.4, 0.4> }

light_source { <10, 10, 10> color rgb <1, 1, 1>}

camera	{
  location  < 10.00, 10.00, 10.00 >
  up        < 0.00, 0.00, 1.80 >
  sky       < 0.00, 0.00, 1.00 >
  look_at   < 0.00, 0.00, 0.00 >
	}                 
#declare blue_esc  = texture { pigment { color rgb <0, 0, 1>}}
#declare green_esc = texture { pigment { color rgb <0, 1, 0>}}
#declare red_esc   = texture { pigment { color rgb <1, 0, 0>}}

#declare eixos = 
 union	{
	 cylinder { <0, 0, 0> <10, 0, 0> 0.01 texture { blue_esc }}
	 cylinder { <0, 0, 0> <0, 10, 0> 0.01 texture { green_esc }}
	 cylinder { <0, 0, 0> <0, 0, 10> 0.01 texture { red_esc }}
	}

object { eixos }