POV-Ray : Newsgroups : povray.general : Problems with iterations : Re: Problems with iterations Server Time
31 Jul 2024 02:25:39 EDT (-0400)
  Re: Problems with iterations  
From: SharkD
Date: 10 Jan 2008 02:25:00
Message: <web.4785c7acf1dc5f73f6ab856c0@news.povray.org>
"SharkD" <nomail@nomail> wrote:
> Check out this test scene:
>
> #local i = 0;
> #local numerator = 1;
> #local divisor = 6;
> #while(i < numerator)
>  #local i = i + numerator/divisor;
>  #debug concat("i = ", str(i, 0, -1),"\n")
> #end
>
> Shouldn't the iterations stop when i = 1? What am I doing wrong?

Just to be clear, the last entry printed to the Messages panel is "i =
1.166667".


Post a reply to this message

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