Questions tagged [xbim]

a toolkit for working with Building Information Modeling data for .NET developers. Use this tag to ask questions related building applications that use the XBIM open source toolkit to manage IFC, COBie or BCF data.

XBIM (http://docs.xbim.net/) is a set of .NET-based libraries to work with IFC building model files.

IFC is an ISO Standard and platform-neutral open file format for data exchange of building information. The XBIM toolkit supports STEP, IfcXml and IfcZip formats, and enables you to read and write the full schema of IFC2x3 and IFC4 (including support for the latest Ifc4 Addendum 2).

The wider XBIM toolkit contains additional repositories with libraries to read and write related Open BIM formats including COBie and BIM Collaboration Format (BCF)

In order to visualise 3D Geometries you will need to include the Xbim.Geometry package which provides full support for geometric, topological operations and visualisation.

The motivation behind XbimEssentials is to take away much of the complexity and 'heavy lifting' required to work with Open BIM file formats, so you can focus on creating software solutions without needing deep understanding of STEP/Express parsing, 3D graphics, allowing you to work at a higher level than the buildingSmart data model.

50 questions
0
votes
1 answer

Cannot find IfcProduct.Transform() method in Ifc4 namespace ! (Xbim.Essentials)

I am using IfcProduct.Transform() method to obtain the transformation matrix (XbimMatrix3D instance) and using that to do conversions between relative and absolute placements. But I am not able to find those functions in Ifc4 namespace! I am not…
0
votes
1 answer

Ifc2x3 Equivalent for IfcExtrudedAreaSolidTapered

I want to be able to implement a truncated cone in IFC. I know that there is a rather quick way to implement this in IFC 2x4 with the IfcExtrudedAreaSolidTapered class. Can anybody tell me how to do that with Ifc 2x3? Here's what I have:…
user3166700
  • 25
  • 1
  • 6
0
votes
1 answer

Xbim Geometry error

I am using the following C# code to access geometry data from an ifc4 file. The file contains only a wall created using Revit 2016. I am using Xbim library. This is my code: class Program { private static readonly ILog logger = …
0
votes
1 answer

Class IfcStore not recognized in XbimExtract project

I am trying to use the Xbim Extract project for an application I am working on. However, Visual Studio underlines in red some classes, saying that it cannot find them. I managed to solve some errors, for instance I typed : using…
Marievi
  • 4,951
  • 1
  • 16
  • 33
-1
votes
1 answer

How to get all the elements from the .ifc file?

I would like to Extract all the elements from the IFC file. here is my code snippet var allElements = model.Instances.OfType().ToList(); from the above code, I can extract all walls, windows, etc but my IFC file also contains…
1 2 3
4