@fari697 wrote:
Hey guys,
How do i create a list of lists of points, seems simple tasks but having troubles outputing some format the other guys can then use in their workflows.
This is what i have, but it doesnt work well:(
var polygonsList = new DataTree<DataTree<Point3d>>(); foreach(Polygon polygons in rebarGroup.Polygons) { var polygonPointsList = new DataTree<Point3d>(); foreach(TSG3.Point point in polygons.Points) { Point3d PtB = new Point3d(); PtB.X = point.X; PtB.Y = point.Y; PtB.Z = point.Z; polygonPointsList.Add(PtB); } polygonsList.Add(polygonPointsList); } Polygons = polygonsList;
Posts: 2
Participants: 2