Hi all,
I have formerly mostly written in C# when working in Grasshopper, but now sometimes have to write parts in Python too, and struggling a bit with this IronPython adaption.
When construction a empty DataTree in Python, I know I can write;
import Rhino.Geometry as rg
import Grasshopper as gh
point_tree = gh.DataTree[rg.Point3d]()
However, I now like to use another constructor for DataTree, the one that takes a DataTree as input to create a shallow duplicate. My first guess was to write it as below, but it do not work;
point_tree = gh.DataTree[rg.Point3d](other_tree)
So how do I access the other constructors of DataTree? I would really appreciate some help with the syntax here, because there’s obviously something I am not getting. Or, is there another way to copy a tree?