shipyard_scenegraph 0.6.1

Scenegraph for Entity Component System
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "nalgebra")]
pub mod nalgebra_common;

#[cfg(feature = "nalgebra_math")]
//waiting for stable: #[doc(cfg(feature = "nalgebra_math"))]
/// Only if nalgebra_math feature is enabled
pub mod nalgebra;

#[cfg(feature = "native_math")]
//waiting for stable: #[doc(cfg(feature = "native_math"))]
/// Only if native_math feature is enabled
pub mod native;


#[cfg(feature = "nalgebra_glm_math")]
//waiting for stable: #[doc(cfg(feature = "native_math"))]
/// Only if native_math feature is enabled
pub mod nalgebra_glm;