POV-Ray : Newsgroups : povray.bugreports : Crashed 3.7 beta 29 using isosurface and sqrt : Re: Crashed 3.7 beta 29 using isosurface and sqrt Server Time
14 May 2024 17:16:32 EDT (-0400)
  Re: Crashed 3.7 beta 29 using isosurface and sqrt  
From: clipka
Date: 31 Dec 2008 02:35:00
Message: <web.495b1f8a810c53fa483cfa400@news.povray.org>
"FainAvis" <nomail@nomail> wrote:
> #declare  F = function(x,y,z) { F(x, sqrt((y*y+z*z)), z) }  // bug here

Uh-oh - I may be totally mistaken, but isn't that a recursive definition?

I'm not surprised POV-Ray throws up on this one way or the other. Maybe this is
what you actually want:

#declare  F = function(x,y,z) { sqrt((y*y+z*z)) }


Post a reply to this message

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