box3d-rust 0.1.0

Pure Rust port of the Box3D 3D physics engine
Documentation
// Port of the joint data model from box3d-cpp-reference/src/joint.h.
// Lifecycle and plumbing from joint.c; per-type solve lands in later commits.
//
// SPDX-FileCopyrightText: 2025 Erin Catto
// SPDX-License-Identifier: MIT

mod api;
mod distance;
mod draw;
mod lifecycle;
mod motor;
mod parallel;
mod plumbing;
mod prismatic;
mod revolute;
mod solve;
mod spherical;
mod types;
mod weld;
mod wheel;
mod wheel_api;

pub use api::*;
pub use distance::*;
pub use draw::*;
pub use lifecycle::*;
pub use motor::*;
pub use parallel::*;
pub use plumbing::*;
pub use prismatic::*;
pub use revolute::*;
pub use solve::*;
pub use spherical::*;
pub use types::*;
pub use weld::*;
pub use wheel::*;
pub use wheel_api::*;