assimp 0.0.4 copy "assimp: ^0.0.4" to clipboard
assimp: ^0.0.4 copied to clipboard

outdated

Open Asset Import Library aka Assimp for Dart. Assimp can import various well-known 3D model formats in a uniform manner.

Assimp for Dart #

pub license: BSD build codecov

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.

Usage #

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 - still lacking Z-sorting:

Assimp

To use this package, add assimp as a dependency in your pubspec.yaml file.

Status #

This package is currently in alpha stage and supports read-only imports with Assimp 5.x, and has so far been developed and tested on 64-bit desktop platforms only. 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:

18
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Open Asset Import Library aka Assimp for Dart. Assimp can import various well-known 3D model formats in a uniform manner.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ffi, meta, quiver, vector_math

More

Packages that depend on assimp