POV-Ray : Newsgroups : povray.newusers : area_light question Server Time
28 Jul 2024 18:24:36 EDT (-0400)
  area_light question (Message 1 to 4 of 4)  
From: stevenvh
Subject: area_light question
Date: 19 Aug 2007 16:50:00
Message: <web.46c8acea57bca1d5e99dba500@news.povray.org>
OK, I'm an idiot.
I'm trying to create an area-light consisting of 3x3 light sources, but I
can see only one! (Not sure if the looks_like parameter should be applied
for each light source, but at least I expect to see 9 bright spots on the
box!)


=======================
code:

background { Gray70 }
box { <-500, -500, 0>, <500, 500, 1>   pigment { Gray70 } }

light_source { 0, White
    area_light 600 * x, 600 * y, 3, 3
        adaptive 1   jitter   translate < 0, 0, -20 >
        looks_like { whiteBulb } }

camera {
    location <-400, 200, -500>
    right 1.333 * x
    look_at <0 , 0, 010 >
    angle 50  }


Post a reply to this message

From: Le Forgeron
Subject: Re: area_light question
Date: 19 Aug 2007 17:37:35
Message: <46c8b81f@news.povray.org>
Le 19.08.2007 22:49, stevenvh nous fit lire :
> OK, I'm an idiot.
> I'm trying to create an area-light consisting of 3x3 light sources, but I
> can see only one! (Not sure if the looks_like parameter should be applied
> for each light source, but at least I expect to see 9 bright spots on the
> box!)
> 

http://tag.povray.org/povQandT/misconceptions.html#arealightconfusion2

Especially the third dot in the dotted list.


-- 
The superior man understands what is right;
the inferior man understands what will sell.
-- Confucius


Post a reply to this message

From: Alain
Subject: Re: area_light question
Date: 20 Aug 2007 06:05:55
Message: <46c96783$1@news.povray.org>
stevenvh nous apporta ses lumieres en ce 2007/08/19 16:49:
> OK, I'm an idiot.
> I'm trying to create an area-light consisting of 3x3 light sources, but I
> can see only one! (Not sure if the looks_like parameter should be applied
> for each light source, but at least I expect to see 9 bright spots on the
> box!)
> 
> 
> =======================
> code:
> 
> background { Gray70 }
> box { <-500, -500, 0>, <500, 500, 1>   pigment { Gray70 } }
> 
> light_source { 0, White
>     area_light 600 * x, 600 * y, 3, 3
>         adaptive 1   jitter   translate < 0, 0, -20 >
>         looks_like { whiteBulb } }
> 
> camera {
>     location <-400, 200, -500>
>     right 1.333 * x
>     look_at <0 , 0, 010 >
>     angle 50  }
> 
> 
> 
If you want 9 bright spots, you need to use 9 actual point_light placed in an array.

You use adaptive 1 with an array of 3*3. The problem is that adaptive 1 start 
with a 3*3 array and thus, adaptive have absolutely no effect in your case.
With adaptive, the benefits start at the following dimentions:
adaptive 0 -> 3*3	best with 9*9 and more
adaptive 1 -> 5*5	best with 17*17 and more
adaptive 2 -> 9*9	best with 33*33 and more
adaptive 3 -> 17*17	best with 65*65 and more

-- 
Alain
-------------------------------------------------
'I can resist anything but temptation.'


Post a reply to this message

From: stevenvh
Subject: Re: area_light question
Date: 20 Aug 2007 13:10:00
Message: <web.46c9c9eb1884299be99dba500@news.povray.org>
Le Forgeron <jgr### [at] freefr> wrote:
>
> http://tag.povray.org/povQandT/misconceptions.html#arealightconfusion2
>
> Especially the third dot in the dotted list.
>

Great, I managed to overlook "The array-effect applies to shadows only. The
object's illumination is still that of a point source." in 3 readings.
Merci for pointing it out.



Alain <ele### [at] netscapenet> wrote:
> If you want 9 bright spots, you need to use 9 actual point_light placed in an array.
>
> You use adaptive 1 with an array of 3*3. The problem is that adaptive 1 start
> with a 3*3 array and thus, adaptive have absolutely no effect in your case.
> With adaptive, the benefits start at the following dimentions:
> adaptive 0 -> 3*3 best with 9*9 and more
> adaptive 1 -> 5*5 best with 17*17 and more
> adaptive 2 -> 9*9 best with 33*33 and more
> adaptive 3 -> 17*17 best with 65*65 and more
>

Thanks Alain. I guess I never thought about it.

Merci a tous


Post a reply to this message

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