POV-Ray : Newsgroups : povray.beta-test : No refractive caustic in 3.7 beta 17 Server Time
28 Jul 2024 18:16:12 EDT (-0400)
  No refractive caustic in 3.7 beta 17 (Message 1 to 2 of 2)  
From: Yongjin Kim
Subject: No refractive caustic in 3.7 beta 17
Date: 13 Dec 2006 08:15:01
Message: <web.457ffbd9acf7eeea7f37d810@news.povray.org>
Following scene description makes caustic in 3.6 as I expected.
But in 3.7 beta(17), no caustic at all...

This problem is only for refractive caustic,
I checked reflective caustic(ex. ring) occurs in 3.7.

Is it a bug?
or have any syntax symmentic related to refractive caustic changed?

p.s. How can I get the source code of 3.7 beta??


====================================================================
#include "stdinc.inc"
#include "textures.inc"
#include "glass.inc"
#include "metals.inc"

global_settings {
  assumed_gamma 1
  max_trace_level 25

  photons {
    count 100000
    spacing 0.03
    autostop 0
    jitter 0
  }
}

camera {
        up <0,1,0>
        location <0,5,-12>
        look_at <0,0,0>
}


light_source {
        <10,11,10> //light position
        color rgb <1,1,1>*1.6
        photons {
         reflection on
         refraction on
        }
}

background { color rgb <0.4,0.4,0.6>  }

plane {
 y, -1
        texture {
         T_Brass_1A
        }
        photons {
         reflection on
         refraction on
         collect
        }

}


object {
        sphere { <0, -1+2, 0>,2 }
        material {
           texture {
                pigment { color Col_Glass_Clear }
                finish { F_Glass9 }
           }
           interior {
                I_Glass_Exp(2)
                fade_color Col_Glass_Clear
           }
        }

        photons {
        target
        reflection on
        refraction on
        //collect
        }

}
=======================================================================


Post a reply to this message

From: nemesis
Subject: Re: No refractive caustic in 3.7 beta 17
Date: 13 Dec 2006 08:30:01
Message: <web.457fffc48b782f62f2ff13290@news.povray.org>
"Yongjin Kim" <sld### [at] postechackr> wrote:
> But in 3.7 beta(17), no caustic at all...
> Is it a bug?

since it's a beta, i'd bet it wasn't implemented yet.


Post a reply to this message

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