POV-Ray : Newsgroups : povray.general : What is the recursion limit? : What is the recursion limit? Server Time
30 Apr 2024 23:23:29 EDT (-0400)
  What is the recursion limit?  
From: Ger
Date: 16 Mar 2016 22:16:54
Message: <56ea1396$1@news.povray.org>
And I don't mean in Radiosity but as in

#macro VeryRecursive(A_var)
  #local Something = 1;
  Some interesting actions and calculations involving A_var
  #local AnotherVar = A calculus result
  #if (AnotherVar < SomeLimit)
    VeryRecursive(AnotherVar)
  #end
#end

I have tried this and it crashes around 33 levels deep. Is there a way to go 
deeper?

-- 

Ger


Post a reply to this message

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