POV-Ray : Newsgroups : povray.binaries.images : first post : first post Server Time
8 Aug 2024 20:29:30 EDT (-0400)
  first post  
From: asfiXy
Date: 5 May 2005 10:40:01
Message: <web.427a2f64d6faa4a749223f780@news.povray.org>
This is my first post on this newsgroup, so here is the reflective plane
over checkered sphere ;), with the source code:

camera {
 location <0,-2.5,-15>
 look_at -2.5*y
 sky <1,-5,0>
}

light_source {
 <500,500,-1000>
 color rgb 1
}

plane {
 y, -3
 pigment {
  color rgb <0.9,0.8,0.2>
 }
 finish {
  reflection { 1 metallic 1 }
  ambient 0
  diffuse 0.0
 }
}

sphere {
 0, 3
 pigment {
  cells
  color_map {
   [ 0 color rgbf <0.8,0.5,0.8,1> ]
   [ 1 color rgbf 1 ]
  }
 }
 interior {
  media {
   emission rgb 0.5
   intervals 100
   density {
    cells
    density_map {
     [ 0 color rgb -1 ]
     [ 1 color rgb <0.5,0.6,0.8> ]
    }
   }
  }
 }
 finish {
  specular 0.5/20
  roughness 0.3/20
 }
 rotate 51*z
 hollow
}

sky_sphere {
 pigment {
  gradient y
  color_map {
   [ 0 color rgb 1 ]
   [ 1 color rgb <0.5,0.6,0.9> ]
  }
 }
}


Post a reply to this message


Attachments:
Download 'reflsphere.jpg' (42 KB)

Preview of image 'reflsphere.jpg'
reflsphere.jpg


 

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.