2018-03-16 13:48:04 +01:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
|
2018-02-23 12:04:26 +01:00
|
|
|
extern crate num;
|
2018-02-26 14:59:32 +01:00
|
|
|
extern crate image;
|
2018-02-23 12:04:26 +01:00
|
|
|
|
2018-02-23 17:35:39 +01:00
|
|
|
#[macro_use] extern crate verbose_log;
|
|
|
|
#[macro_use] extern crate glium;
|
2018-02-23 12:04:26 +01:00
|
|
|
|
|
|
|
pub mod math;
|
|
|
|
pub mod model;
|
2018-02-23 17:35:39 +01:00
|
|
|
pub mod renderer;
|
2018-02-23 12:04:26 +01:00
|
|
|
pub mod parser;
|
2018-02-23 14:34:25 +01:00
|
|
|
pub mod exporter;
|