0

我需要使用 XBIM 获取 IfcWall 对象的顶点列表。我需要的代码必须类似于:

using (model)
{
    List<ItemSet<IfcCartesianPoints>> loppsList = new List<ItemSet<IfcCartesianPoints>>();
    var walls = model.Instances.OfType<IfcWall>();

    foreach (var wall in walls)
    {
        loppsList.Add(wall. ... .Points);
    }
}

但我不知道如何获得正确的方法。

我尝试了这里提出的解决方案:IFC objects navigation to retrieve Wall coordinates

foreach (var wall in walls)
{
    var line = wall.Representation.Representations[0].Items[0];
    var _line  = line as IfcPolyline;
    loppsList.Add(_line.Points);
}

但我没有得到正确的数据——也许我只是迷失在属性的路径中。请帮助浏览 IfcWall 属性。

4

1 回答 1

1

好的,如果将来有人会面临同样的问题,那么完整的方法是:

wall.Representation.Representations[].Items[].Outer[].CfsFaces[].Bounds[].Bound.Polygon[]

//this is how i print the x coordinates of all points
using (model)
        {

            var walls = model.Instances.OfType<IIfcWall>();

            foreach (var wall in walls)
            {
                var loop = wall.Representation.Representations[1].Items[0];

                if (loop is IfcFacetedBrep)
                {

                    var _loop = loop as IfcFacetedBrep;
                    foreach (var face in _loop.Outer.CfsFaces)
                    {
                        foreach (var bound in face.Bounds)
                        {
                            var _b = bound.Bound as IIfcPolyLoop;
                            foreach (var point in _b.Polygon)
                            {
                                Debug.WriteLine(point.ToString());
                            }
                        }
                    }
                }
            }
        }

但:

  1. Representations[] 元素必须是 IfcFacetedBrep(如果是 IfcBooleanClippingResult,那么我不知道该怎么做)

  2. Representations[]、Items[] 和其他数组的索引是未知的

  3. 墙可以是 IfcWall (IFC 4),也可以是 IIfcWall (IFC 2x3),并且通过这些对象的导航是不同的

不要使用国际金融公司。

于 2020-01-12T16:46:31.437 回答