pub mod aabb;
pub mod bitset;
pub mod body;
pub mod broad_phase;
pub mod compound;
pub mod constants;
pub mod constraint_graph;
pub mod contact;
pub mod contact_solver;
pub mod core;
pub mod debug_draw;
pub mod determinism;
pub mod distance;
pub mod dynamic_tree;
pub mod events;
pub mod geometry;
pub mod height_field;
pub mod hull;
pub mod human;
pub mod id;
pub mod id_pool;
pub mod island;
pub mod joint;
pub mod manifold;
pub mod math_functions;
pub mod mesh;
pub mod mover;
pub mod name_cache;
pub mod recording;
pub mod sensor;
pub mod shape;
pub mod solver;
pub mod solver_set;
pub mod table;
pub mod types;
pub mod world;
pub use debug_draw::{
make_debug_color, CreateDebugShapeCallback, DebugDraw, DebugMaterial, DebugShape,
DestroyDebugShapeCallback, HexColor,
};
pub use id::{BodyId, ContactId, JointId, ShapeId, WorldId};
pub use math_functions::{
Aabb, CosSin, Matrix3, Plane, Pos, Quat, SegmentDistanceResult, Transform, Triangle, Vec2,
Vec3, WorldTransform, MAT3_IDENTITY, MAT3_ZERO, PI, POS_ZERO, QUAT_IDENTITY,
TRANSFORM_IDENTITY, VEC3_AXIS_X, VEC3_AXIS_Y, VEC3_AXIS_Z, VEC3_ONE, VEC3_ZERO,
WORLD_TRANSFORM_IDENTITY,
};
pub use types::{
default_body_def, default_distance_joint_def, default_explosion_def, default_filter,
default_filter_joint_def, default_motor_joint_def, default_parallel_joint_def,
default_prismatic_joint_def, default_query_filter, default_revolute_joint_def,
default_shape_def, default_spherical_joint_def, default_weld_joint_def,
default_wheel_joint_def, default_world_def, BodyDef, BodyType, Capacity, Counters,
DistanceJointDef, ExplosionDef, Filter, FilterJointDef, JointDef, MotionLocks, MotorJointDef,
ParallelJointDef, PrismaticJointDef, QueryFilter, RayResult, RevoluteJointDef, ShapeDef,
SphericalJointDef, WeldJointDef, WheelJointDef, WorldCastOutput, WorldDef, BODY_TYPE_COUNT,
};
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
#[cfg(test)]
mod aabb_tests;
#[cfg(test)]
mod bitset_tests;
#[cfg(test)]
mod body_tests;
#[cfg(test)]
mod body_api_tests;
#[cfg(test)]
mod body_query_tests;
#[cfg(test)]
mod broad_phase_tests;
#[cfg(test)]
mod compound_tests;
#[cfg(test)]
mod contact_tests;
#[cfg(test)]
mod debug_draw_tests;
#[cfg(test)]
mod distance_tests;
#[cfg(test)]
mod dynamic_tree_tests;
#[cfg(test)]
mod geometry_tests;
#[cfg(test)]
mod height_field_tests;
#[cfg(test)]
mod hull_tests;
#[cfg(test)]
mod id_tests;
#[cfg(test)]
mod joint_tests;
#[cfg(test)]
mod manifold_tests;
#[cfg(test)]
mod math_functions_tests;
#[cfg(test)]
mod mesh_tests;
#[cfg(test)]
mod mover_tests;
#[cfg(test)]
mod shape_tests;
#[cfg(test)]
mod shape_api_tests;
#[cfg(test)]
mod table_tests;
#[cfg(test)]
mod world_tests;
#[cfg(test)]
mod world_api_tests;
#[cfg(test)]
mod large_world_tests;
#[cfg(test)]
mod determinism_tests;
#[cfg(test)]
mod recording_tests;
#[cfg(test)]
mod recording_replay_tests;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn version_matches_cargo_manifest() {
assert_eq!(VERSION, env!("CARGO_PKG_VERSION"));
}
}