Notifications
Clear all

[Closed] How can you script a double loop?

Hello!

I have a function in a script, which I am trying to copy in 2 dimensions (x and z)

fn CREATE

Can I copy it 3000 units along the x-axis ‘n’ number of times, while also copying it 3000 up the z-axis ‘m’ number of times, to form a grid of the function?

Many thanks!

1 Reply
 PEN

Is this what you are looking for?

for i 1 to x.count do
(
   for j = 1 to z.count do
   (

   )
)