hexagon logo

Looping Parts on a Grid

Hi guys this is my first post so i apologize if this has been posted before.
I have parts that are arranged on a 4x3 grid or a 5x5 grid(the parts are the same, the matrix is different), and I would like to loop the program to measure the whole gride at a time. Is this possible? Most of the posts I've read here so far make it seem as though parts can only be arranged in one direction to loop with offsets.Any help would be appreciated! Thanks!
Parents
  • you have to do a double loop.

    (the way I would do it)
    Step 1, program the part, make it run.
    Step 2, put in loop #1 for the 'x' direction, put in the loop end (at the end of the program)
    Step 3, put in loop #2 for the 'y' direction, put THIS loop start before loop #1, put the loop end after the loop end for the first loop.

    DO NOT try to copy & paste loop starts or ends. Do not 'open' a loop without closing it before doing a second loop.
Reply
  • you have to do a double loop.

    (the way I would do it)
    Step 1, program the part, make it run.
    Step 2, put in loop #1 for the 'x' direction, put in the loop end (at the end of the program)
    Step 3, put in loop #2 for the 'y' direction, put THIS loop start before loop #1, put the loop end after the loop end for the first loop.

    DO NOT try to copy & paste loop starts or ends. Do not 'open' a loop without closing it before doing a second loop.
Children
No Data