Skip to main content

box3d_rust/joint/
mod.rs

1// Port of the joint data model from box3d-cpp-reference/src/joint.h.
2// Lifecycle and plumbing from joint.c; per-type solve lands in later commits.
3//
4// SPDX-FileCopyrightText: 2025 Erin Catto
5// SPDX-License-Identifier: MIT
6
7mod api;
8mod distance;
9mod draw;
10mod lifecycle;
11mod motor;
12mod parallel;
13mod plumbing;
14mod prismatic;
15mod revolute;
16mod solve;
17mod spherical;
18mod types;
19mod weld;
20mod wheel;
21mod wheel_api;
22
23pub use api::*;
24pub use distance::*;
25pub use draw::*;
26pub use lifecycle::*;
27pub use motor::*;
28pub use parallel::*;
29pub use plumbing::*;
30pub use prismatic::*;
31pub use revolute::*;
32pub use solve::*;
33pub use spherical::*;
34pub use types::*;
35pub use weld::*;
36pub use wheel::*;
37pub use wheel_api::*;