Closed ZhShihang closed 1 year ago
Hi, If a number of different types of facets are instantiated, how to add them to the same closded shell bellow. IfcClosedShell(IEnumerable faces) .
Maybe add surfaces to the IfcSurface list is a good idea
You can add or revise the faces after the constructor. Something like this:
List faces = new List(); IfcClosedShell closedShell = new IfcClosedShell(faces); closedShell.CfsFaces.Add(new IfcFace(xxx));
Hi, If a number of different types of facets are instantiated, how to add them to the same closded shell bellow. IfcClosedShell(IEnumerable faces) .