oxiphysics-core 0.1.1

Core types, traits, and abstractions for the OxiPhysics engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2026 COOLJAPAN OU (Team KitaSan)
// SPDX-License-Identifier: Apache-2.0

//! Core math types and operations for the OxiPhysics engine.
//!
//! **All other OxiPhysics crates should import math types from
//! `oxiphysics_core::math` rather than depending on nalgebra directly.**

mod dual_traits;
mod geometry;
mod linear_algebra;
mod types;

// Re-export all public items
pub use geometry::*;
pub use linear_algebra::*;
pub use types::*;