I’m trying to move/duplicate a 2D grid of points in the z direction to get a 3D grid. This time I’d like to keep their current data structure instead of just flattening and moving all the points up.
Here are a couple of examples, the first one destroys the data structure. The second one keeps it, but with group/ungroup. The thing is that when I use group/ungroup I feel like maybe I’m cheating and should be manipulating the data in another way (sets, duplicate/etc).
All my attempts to do this without group/ungroup have failed so far. Is there a way to move these points up into a 3D grid, but without using group/ungroup?