POV-Ray : Newsgroups : povray.general : Some Basic Loop Questions : Re: Some Basic Loop Questions Server Time
3 Aug 2024 00:23:25 EDT (-0400)
  Re: Some Basic Loop Questions  
From: Apache
Date: 22 Jun 2004 19:27:33
Message: <40d8c065@news.povray.org>
something like the following:

#if ((A > 2) & (B > 3))
    DoStuffHere
#end


another example:

#local I = 0;
#while (I < 10)
    RepeatThisTenTimes
    #declare I = I + 1;
#end


Post a reply to this message

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