I would like to create two lists of lists of points based on 2 lists of x coordinates and 2 lists of y coordinates.
Let’s call the lists [[Ax], [Bx]] and [[Ay], [By]]. I want to get points [Ax, Ay] and [Bx, By]. The list lengths are [5,4] and [4,3] so I should end up with 32 points. 20 in list A, and 12 in list B. Ideally, these would be broken down into sublists based on Ax and Bx, so 5 lists of 4 points in list A, and 4 lists of 3 points in list B.
I’ve tried playing with the levels at the X and Y inputs of Point.ByCoordinates, but always end up with the wrong number of points.