根据您想要对几何体执行的操作、想要深入研究 IFC 标准以及解决方案所需的性能,您有两种不同的选择:
- 自行提取隐式几何
- 使用外部几何引擎
如果您选择第一个选项,则必须深入研究IFC 模式。你只会对IFCProducts感兴趣,因为只有那些才能有几何。使用 OpenIfcTools 您可以执行以下操作:
Collection<IfcProduct> products = model.getCollection(IfcProduct.class);
for(IfcProduct product: products){
List<IfcRepresentation> representations = product.getRepresentation().getRepresentations();
assert ! representations.isEmpty();
assert representations.get(0) instanceof IfcShapeRepresentation:
Collection<IfcRepresentationItem> repr = representations.get(0).getItems();
assert !repr.isEmpty();
IfcRepresentationItem representationItem = repr.iterator().next();
assert representationItem instanceof IfcFacetedBrep;
for(IfcFace face: ((IfcFacetedBrep)representationItem).getOuter().getCfsFaces()){
for(IfcFaceBound faceBound: face.getBounds()){
IfcLoop loop = faceBound.getBound();
assert loop instanceof IfcPolyLoop;
for(IfcCartesianPoint point: ((IfcPolyLoop) loop).getPolygon()){
point.getCoordinates();
}
}
}
}
但是,有很多不同的 GeometryRepresentations,您必须涵盖它们,可能自己进行三角测量和其他东西。我已经展示了一种特殊情况并做出了很多断言。而且您必须摆弄坐标转换,因为它们可能是递归嵌套的。
如果你选择第二个选项,我知道的几何引擎都是用 C/C++ 编写的(Ifcopenshell,RDF IfcEngine),所以你必须处理本地库集成。IFCOpenshell 提供的 jar 包旨在用作 Bimserver 插件。如果没有相应的依赖项,您将无法使用它。但是,您可以从此包中获取本机二进制文件。为了使用引擎,您可以从 Bimserver插件源中获得一些灵感。您将使用的关键本机方法是
boolean setIfcData(byte[] ifc)
解析 ifc 数据
IfcGeomObject getGeometry()
依次访问提取的几何图形。