I start with a simple grid sop(3 x 3, rows & columns).
I feed this into a pointWrangle SOP.
The Vex code is Simple(I'm trying to identify the leftmost points):
printf("pt:%d\n", @ptnum); if(@ptnum % 3) printf("pt:%d ->copy\n",@ptnum); else printf("pt:%d ->src\n",@ptnum);
The output then prints:
pt:0
pt:1
pt:2
pt:3
pt:4
pt:5
pt:6
pt:7
pt:8
pt:0 ->src
pt:3 ->src
pt:6 ->src
pt:1 ->copy
pt:2 ->copy
pt:4 ->copy
pt:5 ->copy
pt:7 ->copy
pt:8 ->copy
I might be missing something, but isn't the sequence supposed to flow linearly, from the first point to the last?
According to this output, the node seems to be making three passes, one for each print statement.
Is this expected behavior or am I going nuts?
Thanks for any help.
Image Not Found