CHSL
prounced (chisel) https://crates.io/crates/chsl
2D Game Physics Engine supporting Joints/Constraints
let mut physics_world = new;
let steps = 1;
loop
Add and Remove RigidBodies
let circle = new_circle;
//adding
physics_world.add_body;
//removing
physics_world.remove_body;
Add and Remove Constraints/Joints
//body is an id
let slide = SlideJoint ;
//adding
physics_world.add_constraint;
//removing
physics_world.add_constraint;
Stuffs
this is a shoddily made engine made for fun so use at your own discretion