POV-Ray : Newsgroups : povray.general : Whats wrong with this radiosity scene : Whats wrong with this radiosity scene Server Time
6 Oct 2024 09:15:58 EDT (-0400)
  Whats wrong with this radiosity scene  
From: FNH
Date: 15 Feb 2014 15:35:01
Message: <web.52ffcebf749ec1a35f52a9c30@news.povray.org>
I expect to see a glowing white ball on a blue plane.  Any help appreciated :)

#version 3.7;
#include "colors.inc"

camera { location <10,10,-2> look_at <0,4,0> }

#default{ finish{ ambient 0 diffuse 1 }}

global_settings {
    radiosity {
      pretrace_start 0.08           // start pretrace at this size
      pretrace_end   0.04           // end pretrace at this size
      count 35                      // higher -> higher quality (1..1600) [35]
      nearest_count 5               // higher -> higher quality (1..10) [5]
      error_bound 1.8               // higher -> smoother, less accurate [1.8]
      recursion_limit 3             // how much interreflections are calculated
(1..5+) [3]
      low_error_factor .5           // reduce error_bound during last pretrace
step
      gray_threshold 0.0            // increase for weakening colors (0..1) [0]
      minimum_reuse 0.015           // reuse of old radiosity samples [0.015]
      brightness 1                  // brightness of radiosity effects (0..1)
[1]
      adc_bailout 0.01/2
    }
}

sphere { <0,0,0>,1 texture { pigment { White } finish { ambient 10 } }  }

plane   {
        <0,-1,0>, 0
        texture { pigment { Blue } finish { ambient 0 diffuse .6 } }
        }


Post a reply to this message

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