Hello. I’m just wondering if there’s an easy way to do linear distribution or make a 1D or 2D array of a simple SOP or TOP. Say you have a rectangle or a line SOP/TOP and you want to turn that into a sequence or grid of lines and have control over how the new copies are distributed (i.e. some sort of an ID for each new array member).
Thanks for your help! Much appreciated.
Are you thinking about ops, or about what you’re rendering?
For rendering, you might consider instancing - there are some nice ways to build fast patterns there.
If you’re thinking about ops themselves - Replicators can do this without much additional python. Otherwise you can access how ops are located in the network via python members like:
your_op.nodeX = some_int
your_op.nodeY = some_int
Fantastic. Yes instancing was what I’ve been after! Thank you for your help. Much appreciated.