Difference between revisions of "POV-Ray: Sistema de cores"
From AdonaiMedrado.Pro.Br
(New page: <code lang="povray"> #include "colors.inc" light_source { <2, 4, -3> color Cyan} background { color Black } camera { location <0, 2, -4> look_at <0, 2, 0> } union { sphere { ...) |
(No difference)
|
Latest revision as of 17:44, 13 September 2008
#include "colors.inc" light_source { <2, 4, -3> color Cyan} background { color Black } camera { location <0, 2, -4> look_at <0, 2, 0> } union { sphere { <-1, 2, 2>, 1 texture { pigment { color Yellow } } } sphere { <1, 2, 2>, 1 texture { pigment { color Magenta } } } sphere { <1, 0, 2>, 1 texture { pigment { color White } } } rotate z*45 translate <.5,0,0> }