model-converter/src/lib.rs

27 lines
437 B
Rust
Raw Permalink Normal View History

2018-04-10 15:25:01 +02:00
//! This crate contains classes and binaries to visualize and convert 3D models.
2018-03-16 13:48:04 +01:00
#![warn(missing_docs)]
2019-06-24 09:45:27 +02:00
extern crate serde;
extern crate serde_derive;
2018-11-28 16:55:56 +01:00
#[macro_use]
extern crate log;
extern crate stderrlog;
2018-02-23 12:04:26 +01:00
extern crate num;
2018-02-26 14:59:32 +01:00
extern crate image;
2018-06-14 22:03:43 +02:00
extern crate nalgebra;
2018-02-23 12:04:26 +01:00
2018-02-23 17:35:39 +01:00
#[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;
2018-04-17 10:45:44 +02:00
pub mod scene;
pub mod camera;
pub mod controls;