rpict
1
Hi all!
JoinCurves within ghpythonlib gives different results as JoinCurves as native grasshopper component.
While the native grasshopper component works as expected and joins all curves, the ghpythonlib.joincurves command doesn’t join any curves.
See attached example file.
Is that a bug or intendet?
-rpict
join_ghc_problem|690x308 join_ghc_problem.gh (7.4 KB)
piac
(Giulio Piacentino)
2
Change the last line of your script to:
C = JoinIt(C)
Thanks,
Giulio
–
Giulio Piacentino
for Robert McNeel & Associates
giulio@mcneel.com
1 Like
rpict
4
Grazie
It works, now.
Does that mean, it didn’t do nothing before? Just piping the data throuh?
-rpict
piac
(Giulio Piacentino)
5
Yeah,… it means that the code was doing all the calculations, then the entire result was ignored and the input was passed as output.