three_d/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![warn(clippy::all)]
3#![allow(clippy::too_many_arguments)]
4#![warn(missing_docs)]
5#![warn(unsafe_code)]
6//!
7//! A 3D renderer which enables out-of-the-box build to both desktop and web with the same code.
8//! See the [README](https://crates.io/crates/three-d) for more information and
9//! the [examples](https://github.com/asny/three-d/tree/master/examples) for how to use it.
10//!
11
12pub mod context;
13
14pub mod core;
15
16pub mod renderer;
17pub use renderer::*;
18
19pub mod window;
20#[allow(unused_imports)]
21pub use window::*;
22
23mod gui;
24#[allow(unused_imports)]
25pub use gui::*;