使用 XBIM 从 IFC 文件获取墙坐标



我需要使用 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对象导航以检索墙坐标

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

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

好的,如果将来有人会遇到同样的问题,完整的方法是:

墙。Representation.Representations[].项目[]。外[]。CfsFaces[]。边界[]。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. 表示 []、项目[] 和其他数组的索引是 unknon

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

不要使用国际金融中心。

相关内容

  • 没有找到相关文章

最新更新