Xbim.Geometry 6.3.873-netcore

This is a prerelease version of Xbim.Geometry.
dotnet add package Xbim.Geometry --version 6.3.873-netcore
                    
NuGet\Install-Package Xbim.Geometry -Version 6.3.873-netcore
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Xbim.Geometry" Version="6.3.873-netcore" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Xbim.Geometry" Version="6.3.873-netcore" />
                    
Directory.Packages.props
<PackageReference Include="Xbim.Geometry" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Xbim.Geometry --version 6.3.873-netcore
                    
#r "nuget: Xbim.Geometry, 6.3.873-netcore"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Xbim.Geometry@6.3.873-netcore
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Xbim.Geometry&version=6.3.873-netcore&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Xbim.Geometry&version=6.3.873-netcore&prerelease
                    
Install as a Cake Tool

Xbim.Geometry

XbimGeometry is part of the Xbim Toolkit.

This package is the top level nuget package for the xbim Geometry Engine which includes the xbim Geometry engine itself plus the interop layer, and the unmanaged OCC geometry kernel, as well as the .NET ModelGeometry.Scene.

It contains the the Geometry Engine and Scene processing, which provide geometric and topological operations to enable users to visualise models in 3D models, typically as a Tesselated scene or mesh.

The native Geometry Engine is built around the open source Open Cascade library which performs much of the boolean operations involved in generating 3D solids. This technology is included under a licence which permits the use as part of a larger work, compatible with xbim's open source CDDL licence.

Getting started

Before using this library you should register the Geometry Engine with the xbim ServiceProvider.

	// Either configure the internal Services
	XbimServices.Current.ConfigureServices(opt => opt.AddXbimToolkit(conf => 
		conf.AddGeometryServices()
		));

	// or configure your services and register the provider with xbim:
	
	services.AddXbimToolkit(conf => conf.AddGeometryServices());
	// Once the DI container is built
	XbimServices.Current.UseExternalServiceProvider(serviceProvider);

Usage

using System.IO;
using Xbim.Ifc;
using Xbim.ModelGeometry.Scene;

const string fileName = "SampleHouse.ifc";
using (var model = IfcStore.Open(fileName))
{
    var context = new Xbim3DModelContext(model);
    context.CreateContext();
    // Now access tessellated geometry / Save wexbim etc
    var wexBimFilename = Path.ChangeExtension(fileName, "wexBIM");
    using (var wexBiMfile = File.Create(wexBimFilename))
    {
        using (var wexBimBinaryWriter = new BinaryWriter(wexBiMfile))
        {
            model.SaveAsWexBim(wexBimBinaryWriter);
            wexBimBinaryWriter.Close();
        }
        wexBiMfile.Close();
    }
}

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on Xbim.Geometry:

Package Downloads
Xbim.WindowsUI

Xbim.WindowsUI is a library containing a set of Windows Forms and WPF controls that can be used to build Windows Xaml or forms-based applications, which can display the 3D geometry and semantic data in IFC building models.

Xbim.Cobie

Provides an object model for handling the COBie schema used in both the UK and US implementations. Supports easy transformation from IFC to COBie and exports to Spreadsheet, JSON and XML formats.

Xbim.Scripting

xBIM Scripting contains the first release of the xBIMQL, BIM query and scripting Language. xBIM is an Open Source Toolkit for developing IFC based applications (BuildingSmart Data model). It provides full support for reading and writing geometry, topology and data in accordance with the Ifc2x3 schema. xBIM reads and writes Ifc, IfcXMl and IfcZip formats. The xBIM project provides packages to convert IFC models to COBie spreadsheets in both UK and US cultures as well as a range of 3D viewing controls for use with Windows forms, WPF, WEBGL and OpenGL platforms. IOS and Android versions are under development.

IFC.Extraction

Extract/Conversion IFC file content into JSON using XBIM COBie format

Xbim.Gltf.IO

Package Description

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Xbim.Geometry:

Repository Stars
xBimTeam/XbimWindowsUI
The home of XbimXplorer and WPF components for your desktop BIM applications.
teocomi/BCFier
Extensible BCF client and tools
Version Downloads Last Updated
6.3.873-netcore 373 11/17/2025
6.1.801-netcore 5,043 12/20/2024
5.1.820 4,406 4/11/2025
5.1.796 9,889 12/19/2024
5.1.437 87,357 5/4/2022
5.1.403 39,304 12/15/2020
5.1.328 20,477 6/10/2020
5.1.317 21,088 3/27/2020
5.1.288 27,260 10/25/2019
5.1.283 8,065 10/9/2019
5.1.277 5,804 10/8/2019
5.1.254 8,268 8/1/2019
5.1.239 16,886 6/3/2019
5.1.233 6,530 6/2/2019
5.0.163 12,880 12/17/2018
4.0.19 5,343 3/5/2021
4.0.18 2,604 10/8/2020
4.0.11 47,376 10/29/2016
4.0.9 3,290 10/28/2016
4.0.8 3,990 10/17/2016
4.0.7 3,683 10/16/2016
3.1.39 4,176 1/23/2018
3.1.38 3,342 12/18/2017
3.1.37 3,502 11/24/2017
3.1.36 3,274 11/16/2017
3.1.35 3,374 11/14/2017
3.1.34 3,285 11/8/2017
3.1.31 3,298 8/23/2017
3.1.30 3,325 8/1/2017
3.1.29 3,457 5/22/2017
3.1.28 3,438 5/22/2017
3.1.27 3,211 5/18/2017
3.1.26 3,321 5/6/2017
3.1.24 3,644 3/28/2017
3.1.22 3,252 1/23/2017
3.1.20 3,462 10/16/2016
3.1.19 3,679 10/14/2016
3.1.15 4,897 5/9/2016
3.1.14 9,086 12/2/2015
3.1.13 3,519 11/17/2015
3.1.12 3,407 10/19/2015
3.1.11 4,490 10/15/2015
3.0.21 4,193 5/26/2015