Module assimp::import [] [src]

The import module contains functionality for importing scenes.

TODO write better documentation, at the moment it's mostly copied from Assimp and some of it is incorrect/irrelevant.

Examples

use assimp::import::Importer;

fn main() {
    let importer = Importer::new();
    let scene = importer.read_file("examples/box.obj");
}

Modules

structs

Argument structs for Importer post-processing configuration.

Structs

Importer

The Importer type.