Ab4d.Assimp
1.1.8770
dotnet add package Ab4d.Assimp --version 1.1.8770
NuGet\Install-Package Ab4d.Assimp -Version 1.1.8770
<PackageReference Include="Ab4d.Assimp" Version="1.1.8770" />
paket add Ab4d.Assimp --version 1.1.8770
#r "nuget: Ab4d.Assimp, 1.1.8770"
// Install Ab4d.Assimp as a Cake Addin #addin nuget:?package=Ab4d.Assimp&version=1.1.8770 // Install Ab4d.Assimp as a Cake Tool #tool nuget:?package=Ab4d.Assimp&version=1.1.8770
Ab4d.Assimp
Ab4d.Assimp is a highly optimized cross-platform .NET Wrapper for the Open Asset Import (Assimp) library.
Assimp library is able to import dozens of different 3D model formats (e.g. OBJ, FBX, GLTF, Collada). See its GitHub page for more information: https://github.com/assimp/assimp
The wrapper library is using Span to access the native memory and this significantly reduces the required memory copy operations.
Note: This version of the package does not contain the native Assimp library. The compiled dlls for the native library can be found in the lib folder in the Ab4d.SharpEngine.Samples on GitHub.
To start using the library call the following method and provide the path to the native assimp library: AssimpLibrary.Instance.Initialize(assimpLibPath);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 was computed. 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. |
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Ab4d.Assimp:
Package | Downloads |
---|---|
Ab4d.SharpEngine.Assimp
Ab4d.SharpEngine.Assimp provides classes that can use Assimp importer to import 3D objects into Ab4d.SharpEngine 3D rendering engine |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.8770 | 870 | 1/5/2024 |
This release targets version 5.3.1 of the native Assimp library but can be also used with version 5.2.5.
Ab4d.Assimp v1.1.8770 change log:
- Changed version from Assimp based version (5.3.1) to an independent version (1.1.8770) so it is possible to release a new version without waiting for Assimp release.
- Added static ImportFileFromMemory method to ImportedAssimpFile class. This method can import scene from byte array or memory (IntPtr). This is used to read scene from a stream.
- Added ExportScene method to ImportedAssimpFile class. This method can be used to export the imported scene to another file format.