POV-Ray Insert Menu
mady by Christoph Hormann
http://www.imagico.de/

light_group

top previous next

// a light group makes certain light sources only
// influencing certain objects
light_group {
  light_source {          // light sourc(es) of this group
    <100100100>
    color rgb y
  }
  sphere {                // objects illuminated by those light sources
    <0-10>,0.5
    pigment { color White }
  }
  //global_lights         // add this to make all global lights
                          // also illuminating this light group
}