I have data tree A and data tree B
How can I add branches of data tree B at the end of data tree A, and the new branches should have data paths {0;25} and {0;26}.
It should work with all other data trees also, I need a generalized solution.
I have data tree A and data tree B
How can I add branches of data tree B at the end of data tree A, and the new branches should have data paths {0;25} and {0;26}.
It should work with all other data trees also, I need a generalized solution.
Off-topic question: how do you render capsules flat?
Using this plugin: Capsule Renderer | Food4Rhino
OK, thanks
if you want to have consecutive paths (assuming you don’t have “holes” in your tree) after the Entwine → Graft as indicated by Cumberland, you can also add a Renumber Paths component, which will create something like the following:
this thing of renumbering the paths is pretty useful for us human beings, because we like patterned progressive stuff, but GH will generally pair them 1:1 like for instance in this simple case when one tree has paths {0} to {7} and the other has {0;0} to {0;4} and {1;0} to {1;2}
of course you can always say to GH “please keep the data structure from this input”, by enabling the “Principal” option on one input (right click on the input itself and chose Principal):
works perfectly fine. Thank You.