POV-Ray : Newsgroups : povray.programming : More POV-Ray crashes on Alpha : Re: More POV-Ray crashes on Alpha Server Time
29 Jul 2024 06:14:55 EDT (-0400)
  Re: More POV-Ray crashes on Alpha  
From: Mark Arrasmith
Date: 6 Aug 1998 14:24:33
Message: <35c9e6d1.0@news.povray.org>
>So if you rewrite line 2209 to
>
>    if ((!dx_zero) && (k1 < k2 - EPSILON / maxdv) && (k1>0.0))
>
>and line 2220 to
>
>    if ((!dx_zero) && (k1 < k2 + EPSILON / maxdv) && (k1 > 0.0))
>


Shouldn't that be (dx_zero)?  Anyway with

if ((dx_zero) && (k1 < k2 - EPSILON / maxdv) && (k1>0.0))

and

if ((dx_zero) && (k1 < k2 + EPSILON / maxdv) && (k1 > 0.0))

POV-Ray runs just fine!  WooHoo!  Ron Parker RULES!

Thanks,
mark


Post a reply to this message

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