box2d 0.0.2

Port of Box2d to Rust
Documentation
1
2
3
4
5
use super::body::Body;

pub trait BroadPhase {
    fn run(&self, bodies: &Vec<Body>) -> Vec<(Body, Body)>;
}