POV-Ray : Newsgroups : povray.binaries.images : problem with functions.inc : Re: problem with functions.inc Server Time
7 Nov 2024 13:37:18 EST (-0500)
  Re: problem with functions.inc  
From: Cousin Ricky
Date: 1 Sep 2015 11:40:34
Message: <55e5c6f2@news.povray.org>
On 2015-09-01 07:25 AM (-4), Norbert Kern wrote:
> #declare IterFn =
> function (N, Re, Im, Zr, Zi) {
>          select (
>                  N > 300 | Zr*Zr+Zi*Zi > 4,
>                  0,
>                  IterFn (N+1, Re, Im, Zr*Zr-Zi*Zi+Re, 2*abs (Zr*Zi)+Im),
>                  N/300
>          )
> }

Reducing the recursion level does not prevent the crash.  I tried all 
the way down to 1.


Post a reply to this message

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