POV-Ray : Newsgroups : povray.beta-test : Beta5 nested loop crash : Re: Beta5 nested loop crash Server Time
30 Jul 2024 18:10:19 EDT (-0400)
  Re: Beta5 nested loop crash  
From: Fabien Mosen
Date: 8 Oct 2001 12:38:10
Message: <3BC1D5F7.F2759B16@skynet.be>
I got the same problem with the following loop :

#declare size_x = 20;
#declare size_y = 20;

#declare py = 0;
#while (py < size_y)

 #declare px = 0;
  #while (px < size_x)
  
    #declare Value = px*py;
    #declare px = px + 1;
    
  #end
  
  #declare py = py + 1;
  
#end

But noticed that it doesn't crash if nothing is done within the loop
(comment out the Value declaration).

POV-Ray 3.5 beta5, WinME, Celeron633, 128Mb.

Fabien.


Post a reply to this message

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