POV-Ray : Newsgroups : povray.general : no_image behaviour Server Time
25 Apr 2024 15:49:45 EDT (-0400)
  no_image behaviour (Message 25 to 34 of 34)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: Bald Eagle
Subject: Re: no_image behaviour
Date: 19 Jun 2018 06:40:00
Message: <web.5b28dcbd6d52b562458c7afe0@news.povray.org>
"jr" <cre### [at] gmailcom> wrote:

> you mean like WF Pokorny suggests in
> http://news.povray.org/5b279884%241%40news.povray.org?

Yeah - I just got around to reading through his code before to see that that's
what he was actually doing.  I had a hard time implementing it from scratch, as
I'm still struggling with the context and syntax for using patterns in
functions.

POV-Ray didn't like this:
density {
     function {pattern {
          object {Intersector
               color_map {
                    [0.0 rgb 0]
                    [0.5 rgb 0]
                    [0.5 rgb 1]
                    [1.0 rgb 1]
                }
           }}
     }
}

> the whole concept is new to me.

Try these:

http://www.f-lohmueller.de/pov_tut/tex/tex_560e.htm
http://www.f-lohmueller.de/pov_tut/tex/tex_561e.htm
http://www.f-lohmueller.de/pov_tut/tex/tex_562e.htm

> > It's too hot to think over here, ...
>
> lucky so and so..

Surely you jest.   But we got a storm front in last night that whisked away
everything in a sudden downpour.   LOTS cooler at the moment.  (crossing
fingers)


Hoping you work this out - the idea seems very cool, and I'm _really_ looking
forward to seeing the animation!


Post a reply to this message

From: jr
Subject: Re: no_image behaviour
Date: 19 Jun 2018 09:30:00
Message: <web.5b2905056d52b562635cc5ad0@news.povray.org>
hi,

"Bald Eagle" <cre### [at] netscapenet> wrote:
> > you mean like WF Pokorny suggests in
> > http://news.povray.org/5b279884%241%40news.povray.org?
> Yeah - I just got around to reading through his code before to see that that's
> what he was actually doing.  I had a hard time implementing it from scratch, as
> I'm still struggling with the context and syntax for using patterns in
> functions.
>
> POV-Ray didn't like this:
> density {
>      function {pattern {
>           object {Intersector
>                color_map {
>                     [0.0 rgb 0]
>                     [0.5 rgb 0]
>                     [0.5 rgb 1]
>                     [1.0 rgb 1]
>                 }
>            }}
>      }
> }
>
> > the whole concept is new to me.
>
> Try these:
> http://www.f-lohmueller.de/pov_tut/tex/tex_560e.htm
> http://www.f-lohmueller.de/pov_tut/tex/tex_561e.htm
> http://www.f-lohmueller.de/pov_tut/tex/tex_562e.htm

thanks.  I will have to get v3.8 installed first though.  next couple of days
or so, is the plan.

> Hoping you work this out - the idea seems very cool, and I'm _really_ looking
> forward to seeing the animation!

phew.  no pressure then.  ;-)


regards, jr.


Post a reply to this message

From: Alain
Subject: Re: no_image behaviour
Date: 19 Jun 2018 15:04:59
Message: <5b2953db@news.povray.org>
Le 18-06-19 à 06:36, Bald Eagle a écrit :
> "jr" <cre### [at] gmailcom> wrote:
> 
>> you mean like WF Pokorny suggests in
>> http://news.povray.org/5b279884%241%40news.povray.org?
> 
> Yeah - I just got around to reading through his code before to see that that's
> what he was actually doing.  I had a hard time implementing it from scratch, as
> I'm still struggling with the context and syntax for using patterns in
> functions.
> 
> POV-Ray didn't like this:
> density {
>       function {pattern {
>            object {Intersector
>                 color_map {
>                      [0.0 rgb 0]
>                      [0.5 rgb 0]
>                      [0.5 rgb 1]
>                      [1.0 rgb 1]
>                  }
>             }}
>       }
> }
> 
Obviously, it don't like that. The object pattern don't support 
color_map, but demand 2 colours.

function{pattern{object{Object Colour1, Colour2}}}


Post a reply to this message

From: jr
Subject: Re: no_image behaviour
Date: 21 Jun 2018 04:50:00
Message: <web.5b2b65ca6d52b562635cc5ad0@news.povray.org>
hi,

William F Pokorny <ano### [at] anonymousorg> wrote:
> The latest 'Pre_release' has been good to me.
> https://github.com/POV-Ray/povray/releases/tag/v3.8.0-alpha.9606898

thanks.  after installing I tried your code, and yes, you were correct, the
scene demonstrates the exact effect I'm after.

so I printed out the code for closer examination.  it must have taken me 20 mins
or so before I saw where the colours are coming from (the trailing commas in
user_defined{} did that  :-)), and perhaps as long again to understand why the
enclosing sphere doesn't display in white.

I thought I now have a handle on this - until I changed the green component of
the user_defined from multiply to add.  :-)  and now I have more questions..

so, I do not understand why the multiplication and addition differ.  I get the
changed colours, but not why the part of the hidden sphere which does not
intersect the reveal box only shows when added or why it doesn't when
multiplied.

another question regards the actual density of box and hidden sphere.  their
densities decrease away from the centres because functions are used, I presume.
how would one get an uniformly dense box and/or sphere?  is a DF3 needed?

and, last question, is there a particular reason that the media colour is rgb
while all other colours are sRGB?

thank you again for the code (and your time), I feel I'm learning.


regards, jr.


Post a reply to this message

From: William F Pokorny
Subject: Re: no_image behaviour
Date: 21 Jun 2018 08:49:47
Message: <5b2b9eeb$1@news.povray.org>
On 06/21/2018 04:48 AM, jr wrote:
> hi,
> 
> William F Pokorny <ano### [at] anonymousorg> wrote:
>> The latest 'Pre_release' has been good to me.
>> https://github.com/POV-Ray/povray/releases/tag/v3.8.0-alpha.9606898
> 
> thanks.  after installing I tried your code, and yes, you were correct, the
> scene demonstrates the exact effect I'm after.
> 
> so I printed out the code for closer examination.  it must have taken me 20 mins
> or so before I saw where the colours are coming from (the trailing commas in
> user_defined{} did that  :-)), and perhaps as long again to understand why the
> enclosing sphere doesn't display in white.
> 
> I thought I now have a handle on this - until I changed the green component of
> the user_defined from multiply to add.  :-)  and now I have more questions..
> 
> so, I do not understand why the multiplication and addition differ.  I get the
> changed colours, but not why the part of the hidden sphere which does not
> intersect the reveal box only shows when added or why it doesn't when
> multiplied.

The object pattern returns 0 or 1. Where we have the reveal box for the 
red channel, the density value is always 1.0 and we always see that box.

To reveal the hidden sphere only where the reveal box exists we're using 
the green channel and multiplication. Only where we have 1(reveal 
box)*1(hidden sphere) in the green channel does it turn on (=1) and red 
and green now mix to get yellow for box samples within the hidden 
sphere. Outside the reveal box where have 0(reveal box)*1(hidden sphere) 
or 0 for density.

When you use addition instead for the green channel of the reveal box is 
also on inside the box (as already was red) and you get yellow for the 
box alone. The sphere is 1 where points are inside so you get green for 
the parts which are outside the reveal box. Inside the reveal box you 
get 1+1 green channel density and a more intense yellow green where they 
mix.

> 
> another question regards the actual density of box and hidden sphere.  their
> densities decrease away from the centres because functions are used, I presume.
> how would one get an uniformly dense box and/or sphere?  is a DF3 needed?
> 

The densities in the original implementation are 1 or 0 inside the 
reveal box. The apparent density decrease you see is due the differences 
in path length through the constant the density. In other words each 
ray's travel time through the density is different. When using emissive 
media this means the longer travel distances end up brighter. You can 
normalize to degrees in various ways, but up front I'd suggest adding 
absorbing media also at 1/white to start. As rays travel further the 
more absorption you get.

> and, last question, is there a particular reason that the media colour is rgb
> while all other colours are sRGB?
> 

The media spec could be srgb so long as you understand the resulting 
internal linear rgb values, but with densities and media it's much 
easier to work and think in linear, 'assumed_gamma 1.0' space.

> thank you again for the code (and your time), I feel I'm learning.

Happy to help - it's an interesting challenge.

> 
> regards, jr.
> 

Aside: In the code the overall media container encloses the reveal and 
hidden shapes. In an actual implementation you likely want your reveal 
object to also be your media container for performance reasons.

Bill P.


Post a reply to this message

From: Alain
Subject: Re: no_image behaviour
Date: 21 Jun 2018 16:53:19
Message: <5b2c103f$1@news.povray.org>
Le 18-06-21 à 04:48, jr a écrit :
> hi,
> 
> William F Pokorny <ano### [at] anonymousorg> wrote:
>> The latest 'Pre_release' has been good to me.
>> https://github.com/POV-Ray/povray/releases/tag/v3.8.0-alpha.9606898
> 
> thanks.  after installing I tried your code, and yes, you were correct, the
> scene demonstrates the exact effect I'm after.
> 
> so I printed out the code for closer examination.  it must have taken me 20 mins
> or so before I saw where the colours are coming from (the trailing commas in
> user_defined{} did that  :-)), and perhaps as long again to understand why the
> enclosing sphere doesn't display in white.
> 
> I thought I now have a handle on this - until I changed the green component of
> the user_defined from multiply to add.  :-)  and now I have more questions..
> 
> so, I do not understand why the multiplication and addition differ.  I get the
> changed colours, but not why the part of the hidden sphere which does not
> intersect the reveal box only shows when added or why it doesn't when
> multiplied.
> 
> another question regards the actual density of box and hidden sphere.  their
> densities decrease away from the centres because functions are used, I presume.
> how would one get an uniformly dense box and/or sphere?  is a DF3 needed?
> 
> and, last question, is there a particular reason that the media colour is rgb
> while all other colours are sRGB?
> 
> thank you again for the code (and your time), I feel I'm learning.
> 
> 
> regards, jr.
> 
> 
> 
> 

The actual effect of all media depend on how long is the path through 
them as well as it's density. Double the path's length and you double 
it's contribution.
Next, that density can get affected with some pattern, like spotted, 
granite, spherical, planar, ... You don't need to use any DF3.
If you don't use any pattern, then the media's density is uniform and 
only the length of the paths through it will affect the end result.

Using an orthographic camera parallel to an axis and a container/pattern 
aligned to the axis can ensure that all paths are of the same length. In 
all other cases, you can't be sure that all paths have the same length 
unless you are extremely careful.

Take those colours : rgb<1,0,0.5> and rgb<0,1,0.5>
When you  multiply them, you get :
Mult = <1,0,0.5>*<0,1,0.5> = <1*0, 0*1, 0.5*0.5> = <0,0,0.25> (dark blue)
When you add then, you get :
Add = <1,0,0.5>+<0,1,0.5> = <1+0, 0+1, 0.5+0.5> = <1,1,1> (white)
That's when working in rgb or linear colour space.

If you use srgb instead, the actual values you give are gamma adjusted 
before the rendering start. If all of the colour components are 0 or 1, 
then, it makes no difference to use rgb or srgb. In all other cases, 
there is a difference.
rgb<0.1, 0.5, 0.8> is not the same as srgb<0.1, 0.5, 0.8>

Whenever you have additive effects to take into account, you need to 
work in linear colour space to get accurate results. That's why it's 
highly recommended to always use "assumed_gamma 1" in the 
global_settings block.


Post a reply to this message

From: jr
Subject: Re: no_image behaviour
Date: 22 Jun 2018 12:25:01
Message: <web.5b2d22706d52b562635cc5ad0@news.povray.org>
hi,

Alain <kua### [at] videotronca> wrote:
> The actual effect of all media depend on how long is the path through
> them as well as it's density. Double the path's length and you double
> it's contribution.
> Next, ...

I'll need to print, read, and then study this reply + many of the preceding.
hoping to .. assimilate the information .. somehow.  :-)

thank you very much, and everybody who has "chipped in".

the plan now is to make a simple "pre-cursor" animation to play with the
concept, learn.  hoping to start on this in the next few days.


regards, jr.


Post a reply to this message

From: Alain
Subject: Re: no_image behaviour
Date: 22 Jun 2018 20:08:08
Message: <5b2d8f68@news.povray.org>
Le 18-06-22 à 12:23, jr a écrit :
> hi,
> 
> Alain <kua### [at] videotronca> wrote:
>> The actual effect of all media depend on how long is the path through
>> them as well as it's density. Double the path's length and you double
>> it's contribution.
>> Next, ...
> 
> I'll need to print, read, and then study this reply + many of the preceding.
> hoping to .. assimilate the information .. somehow.  :-)
> 
> thank you very much, and everybody who has "chipped in".
> 
> the plan now is to make a simple "pre-cursor" animation to play with the
> concept, learn.  hoping to start on this in the next few days.
> 
> 
> regards, jr.
> 
> 
> 

Two very simple tests :
1) Make a scene with a few boxes in an union. Use an orthographic 
camera. All boxes have the same frontal area, but are progressively 
deeper and filled with some uniform media. Apply the media to the whole 
union, not to each individual box.
The deeper the box, the more intense the media effect will be.

2) Make a scene where the box depth is controlled by the clock variable 
and render as an animation.
Use a box like this one :
box{<-1, -1, 0> <1, 1, 20*clock> pigment{rgbt 1}hollow
  interior{media{emission 0.1}}
}
Render with +kff10 on the command line.


Post a reply to this message

From: jr
Subject: Re: no_image behaviour
Date: 25 Jun 2018 11:10:01
Message: <web.5b31046a6d52b562635cc5ad0@news.povray.org>
"jr" <cre### [at] gmailcom> wrote:
> the plan now is to make a simple "pre-cursor" animation to play with the
> concept, learn.

trying, and so far failing.  :-(

the main difference between the example code posted by WF Pokorny and mine is
(a) no enclosing sphere or box, and (b) use of emission colours other than
white.

I have also tried a variation based on the same code which attempted to
implement Alain's idea of a union with a common material, no success either.

so I'll post a zip with a wip test scene file and an ini "driver" in
p.text.scene-files; the sixth frame is where I'd hoped the hidden object would
interact with the majority of the (few sample) notes (it's all pretty crude, I'm
no artist :-)).  frames take a couple of seconds to render.

if anyone could have a look to tell me whether the approach is viable
(everything's in arrays, basically), and where I'm "missing the boat", I'd much
appreciate it.

thank you.


regards, jr.


Post a reply to this message

From: Bald Eagle
Subject: Re: no_image behaviour
Date: 26 Jun 2018 22:10:00
Message: <web.5b32f1086d52b562458c7afe0@news.povray.org>
Check p.b.animations for movie and code


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

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