// Exemplo de arquivo de descricao de cena para POV-ray // edited on 2000-09-21 20:06:05 by Joao Amancio Junior - RA007877 // Last edited on 2001-05-27 15:09:17 by stolfi #include "colors.inc" background{ color rgb < 1.00, 1.00, 1.00 > } // camera { angle 17 location <40,50 ,60>//0,0,70 look_at <2,0,0> } light_source { <15, 30, 60> color White } #declare aviao= union{ sphere { <0.5,0,0>, 2.5 scale <4,.7,0.3> }// frente do aviao1 sphere { <9.5,0,0>, 1.2 scale <1.0,.3,2> }// asa fundo sphere { <0.0,0,0>, 2.5 scale <1.0,.3,3> }// asa frente sphere { <11.10,1,0>, 1.0 scale <1.0,1.2,.5> }// asa fundo acima cylinder { < -4, -0.5, 0.30 >, <-1.0, -3, 2 >, 0.3 }// remo1 esq cylinder { < -4, -0.5, -0.30 >, < -1.0, -3, -2 >, 0.3 }// remo1 dir //sphere { < -.9,-3,2>, 0.4 scale <1.0, 1.1, 1.1> }// Ponta do remo1 sphere { < -.9,-3,2>, .5 }// Ponta do remo1 esq sphere { < -.9,-3,-2>, .5 }// Ponta do remo1 dir cylinder { < -1, -0.5, 0.30 >, <2.0, -3, 2 >, 0.3 } // remo2 esq cylinder { < -1, -0.5, -0.30 >, < 2.0, -3, -2 >, 0.3 }// remo2 dir sphere { < 2.1,-3,2>, .5 } // Ponta do remo2 esq sphere { < 2.1,-3,-2>, .5 }// Ponta do remo2 dir cylinder { < 2, -0.5, 0.30 >, < 5.0, -3, 2 >, 0.3 } // remo3 esq cylinder { < 2, -0.5, -0.30 >, < 5.0, -3, -2 >, 0.3 }// remo3 dir sphere { < 5.1,-3,2>, .5 } // Ponta do remo3 esq sphere { < 5.1,-3,-2>, .5 } // Ponta do remo3 dir pigment {Green} } object {aviao}