POV-Ray : Newsgroups : povray.unofficial.patches : megapov bug : megapov bug Server Time
1 Sep 2024 16:14:07 EDT (-0400)
  megapov bug  
From: Tom Melly
Date: 7 Feb 2001 12:32:27
Message: <3a8186ab$1@news.povray.org>
The following code fails in both pov and megapov (list too long) - but
megapov crashes. Sometimes (well, with varients of this - this version
always seems to crash immediately), the crash occurs straight away,
sometimes I get the standard error message, but them mp crashes on the next
attempt to render (even when I have corrected the fault by increasing the
increment of n to 0.1)

I'm using mp 6a

#declare n = 0;
#declare TestPigment =
pigment{
  bozo
  pigment_map{
    #while(n<=1)
      [n rgb 1]
      #declare n = n + 0.000001;
    #end
  }
}


Post a reply to this message

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