wrapped2d 0.3.3

Rust binding for Box2D
docs.rs failed to build wrapped2d-0.3.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: wrapped2d-0.4.2

rust_box2d Build Status Crates.io License

A library wrapping around the Box2D physics engine. It aims to provide an idiomatic interface.

Box2D is a 2D rigid body simulation library for games. Programmers can use it in their games to make objects move in realistic ways and make the game world more interactive. From the game engine's point of view, a physics engine is just a system for procedural animation.

You won't find a lot of information about Box2D itself here, look at the official website instead.

Documentation

You can look at the testbed for examples.

Dependencies

You will need the native Box2D library (this is based on version 2.3.1). And also Piston dependencies for the testbed.

If necessary, you can specify the Box2D header files location when compiling:

BOX2D_INCLUDE_PATH="path/to/Box2D/Box2D" cargo build