POV-Ray: Sistema de cores

From AdonaiMedrado.Pro.Br
Revision as of 17:44, 13 September 2008 by Adonaimedrado (Talk | contribs) (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 { ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
#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>
}