POV-Ray : Newsgroups : povray.general : Array... : Re: Array... Server Time
7 Aug 2024 15:19:25 EDT (-0400)
  Re: Array...  
From: JRG
Date: 15 Oct 2001 15:26:10
Message: <3bcb3852@news.povray.org>
Then you just need this one:

#declare i = 0;
#while (i<20)
#declare j=0;
#while (j<20)
object {binary_01() translate <-10 +i, 0 , -10+j>}
#declare j=j+1;
#end
#declare i=i+1;
#end

Hope this helps,

--
Jonathan.


Post a reply to this message

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