physics2d 0.3.0

Yet another 2D physics engine, but with Iron power.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate fnv;

#[macro_use]
mod util;

#[macro_use]
pub mod shapes;

pub mod math;

mod collision;
mod constraint;
mod world;

pub use world::debug;

pub use math::{Vec2, Mat2, Cross, Bounds};
pub use world::{World, Body, BodyRef, BodyId, Material, Transform};