Miguel Rus wrote:
Hi,
I'm trying to figure this out. I have a nested list of curves, if I use the grasshopper component the outcome is the expect result but if I use the ghcomp.BoundarySurfaces it does not work. I'm just wondering if the ghcomp can be used with nested lists or shall I loop it.
my code goes something like this:curves00 = [bunch of curves] curves01 = [bunch of curves] allcurves = zip[curves00,curves01] planarSrf = ghcomp.BoundarySurfaces(allcurves ) #The output of this is empty #My solution""" planarSrf = [ghcomp.BoundarySurfaces(crv) for crv in allcurves ] #I'm just wondering if it should work with nested lists
best,
Miguel
Posts: 1
Participants: 1