POV-Ray : Newsgroups : povray.general : Need Help With Radiosity : Re: Need Help With Radiosity Server Time
31 Jul 2024 22:16:08 EDT (-0400)
  Re: Need Help With Radiosity  
From: Sherry Shaw
Date: 18 Aug 2006 11:21:46
Message: <44e5db0a@news.povray.org>
Cherry363 wrote:

>
>Sorry to be such a bother, but I tried to enter the settings you suggested
>and I keep getting errors....this is how I entered it:
>
>global_settings {radiosity {count 200, error_bound 1}{ max_trace_level 100
>ambient_light rgb<0.830000, 0.830000, 0.830000> assumed_gamma 1.0}
>// sunlight
>light_source { < 4226.182699, 14281.480312, 9063.078165 >, rgb <1.000000,
>1.000000, 1.000000>
>  parallel point_at < -0.422618, -1.428148, -0.906308 > fade_power 0}
>
>}
>
>The radiosity line keeps getting errored....what am I doing wrong?
>
>
>  
>

It looks to me like you've just got some misplaced brackets.  Try this:

global_settings {
  radiosity {
    count 200
    error_bound 1
  }
  max_trace_level 100
  ambient_light rgb < 0.830000, 0.830000, 0.830000 >
  assumed_gamma 1.0
}

light_source {
  < 4226.182699, 14281.480312, 9063.078165 >
  rgb < 1.000000,1.000000, 1.000000 >
  parallel
  point_at < -0.422618, -1.428148, -0.906308 >
  fade_power 0
}

--Sherry Shaw

-- 
#macro T(E,N)sphere{x,.4rotate z*E*60translate y*N pigment{wrinkles scale
.3}finish{ambient 1}}#end#local I=0;#while(I<5)T(I,1)T(1-I,-1)#local I=I+
1;#end camera{location-5*z}plane{z,37 pigment{granite color_map{[.7rgb 0]
[1rgb 1]}}finish{ambient 2}}//                                   TenMoons


Post a reply to this message

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