使用 XBIM 从 IFC 文件获取墙坐标
Getting the wall coordinates from IFC file with XBIM
我需要使用 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);
}
}
但我不知道如何获得正确的方法。
我尝试了这里提出的解决方案:
foreach (var wall in walls)
{
var line = wall.Representation.Representations[0].Items[0];
var _line = line as IfcPolyline;
loppsList.Add(_line.Points);
}
但我没有得到正确的数据 — 也许我只是在属性路径中迷路了。请帮助浏览 IfcWall 属性。
好的,如果以后有人遇到同样的问题,完整的方法是:
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());
}
}
}
}
}
}
但是:
Representations[] 元素必须是 IfcFacetedBrep(如果是 IfcBooleanClippingResult,那我就不知道怎么办了)
Representations[]、Items[] 和其他数组的索引未知
墙可以是 IfcWall (IFC 4),IIfcWall (IFC 2x3) 并且通过这个对象的导航是不同的
不要使用 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);
}
}
但我不知道如何获得正确的方法。
我尝试了这里提出的解决方案:
foreach (var wall in walls)
{
var line = wall.Representation.Representations[0].Items[0];
var _line = line as IfcPolyline;
loppsList.Add(_line.Points);
}
但我没有得到正确的数据 — 也许我只是在属性路径中迷路了。请帮助浏览 IfcWall 属性。
好的,如果以后有人遇到同样的问题,完整的方法是:
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());
}
}
}
}
}
}
但是:
Representations[] 元素必须是 IfcFacetedBrep(如果是 IfcBooleanClippingResult,那我就不知道怎么办了)
Representations[]、Items[] 和其他数组的索引未知
墙可以是 IfcWall (IFC 4),IIfcWall (IFC 2x3) 并且通过这个对象的导航是不同的
不要使用 IFC。