Vinay
1
Hi I am trying to pull curves onto planes but I only want to do it for a sublist within a list and for each list I want to do it for list a same index
like below
listA = [1, 2, [4, 5, 6], [8, 9]]
listB = [“a”, “b”, [“c”, “d”], [“e”]]
OutPut = [“1a”, “2b”, [“4c”, “4d”, “5c”, “5d”, “6c”, “6d”], [“8e”, “9e”]]
here is the problem sap
Altered your sample list to better imitate the node list structure.
1 Like
Vinay
3
Hi @Vikram_Subbaiah, thanks for it
How i can achieve this on node “Curve.PullOntoPlane” while inputting curve and plane in it.
So for each curve at sublist it pull on plane based on planes
You need to use the same list level replication as in the code block.
I suggest looking into replication guides for DesignScript. This section might be particularly helpful:
Replication and Replication Guide Part 3 · DynamoDS/Dynamo Wiki · GitHub