You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (null != ifcMaterialLayerSetUsage)
{
IfcMaterialLayerSet layerSet = ifcMaterialLayerSetUsage.ForLayerSet;
if (null != layerSet)
{
IItemSet<IfcMaterialLayer> lstMaterLayer = layerSet.MaterialLayers;
//If three layers, then it is external
if (null != lstMaterLayer)
{
int noOfLayers = lstMaterLayer.Count();
if (noOfLayers >= 3)
{
var externalLayer = lstMaterLayer.First();
Hi All,
Is there anyway I can find the height of each layer of the wall? Also it there any option to find the top coordinates points of each layer?
Right now the code I am using is as follows:
IfcMaterialLayerSetUsage ifcMaterialLayerSetUsage = (IfcMaterialLayerSetUsage)ifcWall.GetMaterial();
///**** doubt List lstPoints = externalLayer.GetTopPoints()????
///**** doubt steelLayerHeight = externalLayer .????
Best regards,
Jojo
The text was updated successfully, but these errors were encountered: