MeshIO 2.2.0-beta
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
.NET Framework 4.8
This package targets .NET Framework 4.8. The package is compatible with this framework or higher.
This is a prerelease version of MeshIO.
dotnet add package MeshIO --version 2.2.0-beta
NuGet\Install-Package MeshIO -Version 2.2.0-beta
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="MeshIO" Version="2.2.0-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MeshIO" Version="2.2.0-beta" />
<PackageReference Include="MeshIO" />
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 MeshIO --version 2.2.0-beta
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MeshIO, 2.2.0-beta"
#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 MeshIO@2.2.0-beta
#: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=MeshIO&version=2.2.0-beta&prerelease
#tool nuget:?package=MeshIO&version=2.2.0-beta&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MeshIO

C# library to read/write and modify different 3D formats.
Features
MeshIO allows to read or create 3D files using .Net and also extract or modify existing content in the files, the main features may be listed as:
- Read 3D files
- Write 3D files
- Extract or modify the content in the files like: Meshes, Cameras, Materials...
- Math methods to apply geometric transformations.
- Creation tools to generate meshes or primitives.
Compatible 3D file formats:
| Read-ASCII | Read-Binary | Write-ASCII | Write-Binary | |
|---|---|---|---|---|
| FBX6000 | ✔️ | ✔️ | 🚧 | 🚧 |
| FBX7000 | ✔️ | ✔️ | ✔️ | ✔️ |
| STL | ✔️ | ✔️ | ✔️ | ✔️ |
| GLB | ✔️ | 🚧 | ||
| GLTF | 🚧 | 🚧 | ||
| OBJ | 🚧 | ❌ |
The goal of this project is to give full support for all the formats in the table.
Code Example
public static void Main()
{
Scene scene;
using (ISceneReader reader = FileFormat.GetReader(test.Path, onNotification))
{
scene = reader.Read();
}
}
// Process a notification from the reader
private static void onNotification(object sender, NotificationEventArgs e)
{
Console.WriteLine(e.Message);
}
Building
Before building run:
git submodule update --init --recursive
This command will clone the submodules necessary to build the project.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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 is compatible. 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 Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| .NET Framework | net48 is compatible. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- Newtonsoft.Json (>= 13.0.1)
-
.NETStandard 2.1
- Newtonsoft.Json (>= 13.0.1)
-
net5.0
- Newtonsoft.Json (>= 13.0.1)
-
net6.0
- Newtonsoft.Json (>= 13.0.1)
-
net7.0
- Newtonsoft.Json (>= 13.0.1)
-
net8.0
- Newtonsoft.Json (>= 13.0.1)
-
net9.0
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.2.0-beta | 49 | 1/21/2026 |
| 2.1.0-alpha | 345 | 2/13/2024 |
| 2.0.1-alpha | 116 | 2/2/2024 |
| 2.0.0-alpha | 606 | 5/4/2023 |
| 1.1.0-alpha | 727 | 3/25/2022 |
| 1.0.1-alpha | 1,078 | 10/7/2021 |