oxiphysics_core/math/mod.rs
1// Copyright 2026 COOLJAPAN OU (Team KitaSan)
2// SPDX-License-Identifier: Apache-2.0
3
4//! Core math types and operations for the OxiPhysics engine.
5//!
6//! **All other OxiPhysics crates should import math types from
7//! `oxiphysics_core::math` rather than depending on nalgebra directly.**
8
9mod dual_traits;
10mod geometry;
11mod linear_algebra;
12mod types;
13
14// Re-export all public items
15pub use geometry::*;
16pub use linear_algebra::*;
17pub use types::*;