1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//#![warn(clippy::all)]
//#![warn(missing_docs)]
//!
//! A 3D renderer which enables out-of-the-box build to both desktop and web with the same code.
//! See the [README](https://crates.io/crates/three-d) for more information and
//! the [examples](https://github.com/asny/three-d/tree/0.7/examples) for how to use it.
//!

pub mod context;

pub mod math;
#[doc(inline)]
pub use math::*;

pub mod definition;
#[doc(inline)]
pub use definition::*;

pub mod core;
#[doc(inline)]
pub use crate::core::*;

pub mod camera;
#[doc(inline)]
pub use camera::*;

pub mod frame;
#[doc(inline)]
pub use frame::*;

pub mod object;
#[doc(inline)]
pub use object::*;

pub mod effect;
#[doc(inline)]
pub use effect::*;

pub mod light;
#[doc(inline)]
pub use light::*;

pub mod function;
#[doc(inline)]
pub use function::*;

pub mod io;
#[doc(inline)]
pub use io::*;

#[cfg(feature = "phong-renderer")]
pub mod phong;
#[doc(inline)]
#[cfg(feature = "phong-renderer")]
pub use phong::*;

pub mod window;
#[doc(inline)]
pub use window::*;

pub mod gui;
#[doc(inline)]
pub use gui::*;