POV-Ray : Newsgroups : povray.beta-test : crash inside two #while : crash inside two #while Server Time
30 Jul 2024 04:15:20 EDT (-0400)
  crash inside two #while  
From: Gleb
Date: 11 Jan 2002 12:21:45
Message: <3c3f1f29$1@news.povray.org>
This simplified code causes a stable crash (POV 3.5 b9 PIII-1000 512 Mb
Win2000):
It's OK if one of #while blocks or sphere is removed.
//-------8<----------
#declare n=1;
#declare i=-1;
#while(i<=n)
  #declare j=-1;
  #while(j<=n)
    #declare tt=((-0.1)^(0.1));
    sphere{<0,0,tt> 1 }
    #declare j=j+1;
  #end
  #declare i=i+1;
#end
//-------8<----------

gleb


Post a reply to this message

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