Archived post by plantfx

@Jonesy this may be late and not sure if I know exactly what it needs but maybe something like this in a point wrangle ` int ptn = i@ptnum;
int s = chi(“stairs”); int f = chi(“floor”);
int l = s+f;
int spts = s*2; int lpts = spts+f;
int x = max(ptn%lpts-spts+1,0)+min(floor(ptn%lpts*.5),s-1); int y = min(floor(float(ptn%lpts+1)*.5),s);
int inc = floor(float(ptn)/lpts); int linc = l*inc; int hinc = s*inc;
v@P = set(x+linc, y+hinc, 0); `