assimp/lib.rs
1//! # assimp - Open Asset Import Library
2//!
3//! Bindings for the [Assimp](http://assimp.sourceforge.net) library.
4
5extern crate assimp_sys as ffi;
6#[cfg(feature = "cgmath")]
7extern crate cgmath;
8
9pub use import::Importer;
10pub use log::LogStream;
11pub use math::{Color3D, Color4D, Matrix3x3, Matrix4x4, Quaternion, Vector2D, Vector3D};
12pub use scene::{Animation, NodeAnim, VectorKey, QuatKey, Camera, Face, Light, Material, Mesh, Node, Scene, Texture};
13
14#[macro_use]
15mod internal_macros;
16
17pub mod export;
18pub mod import;
19pub mod log;
20pub mod math;
21pub mod scene;