boxdd 0.6.0

Safe, ergonomic Rust bindings for Box2D v3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;

mod builders;
mod validation;
mod world_api;

pub(crate) use validation::{
    check_distance_joint_def_valid, check_filter_joint_def_valid, check_joint_base_valid,
    check_motor_joint_def_valid, check_prismatic_joint_def_valid, check_revolute_joint_def_valid,
    check_weld_joint_def_valid, check_wheel_joint_def_valid,
};
pub(crate) use world_api::{
    check_joint_target_identity, check_joint_target_native, create_distance_joint_id,
    create_filter_joint_id, create_motor_joint_id, create_prismatic_joint_id,
    create_revolute_joint_id, create_weld_joint_id, create_wheel_joint_id,
};