1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! Integration of external crates and foreign types.
//!
//! This module provides implementations of traits in Theon for foreign types.
//! Integrated crates are re-exported within a sub-module, which can be used to
//! avoid versioning errors.
//!
//! Re-exported types are hidden in Theon's documentation. Refer to the
//! documentation for integrated crates at the corresponding version.
pub mod decorum {
#[doc(hidden)]
pub use decorum::*;
}
// Feature modules. These are empty unless Cargo features are enabled.
pub mod cgmath;
pub mod glam;
pub mod mint;
pub mod nalgebra;
pub mod ultraviolet;