three-d-asset 0.10.0

Load/save functionality for 3d applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//!
//!  Contain the basic types used by the 3D specific data types. Mostly basic math functionality which is an re-export of [cgmath](https://crates.io/crates/cgmath).
//!

mod math;
pub use math::*;

mod aabb;
pub use aabb::*;

mod color;
pub use color::*;

pub use half::f16;