This library provides Dart FFI bindings to Open Asset Import Library aka. Assimp, which is a portable library to import and export various well-known 3D model formats in a uniform manner.
import 'package:assimp/assimp.dart';
final scene = Scene.fromFile('path/to/3d-model.obj');
for (final mesh in scene.meshes) {
// ...
}
A little example of what you can do with Assimp:
To use this package, add assimp
as a dependency in your pubspec.yaml file.
This package is currently in alpha stage. It supports 64-bit Assimp 5.x, and has been tried out on the following platforms:
- macOS (
brew install assimp
) - Linux (
apt install libassimp5
) - Windows (
vcpkg install assimp:x64-windows
) - Android
- iOS
The documentation is still more or less direct copy-paste from the original library, and is therefore full of broken references.
Notice also that dart:ffi is still in beta, and many fundamentally important features are still in research and development: