Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 1.38 KB

README.md

File metadata and controls

22 lines (13 loc) · 1.38 KB

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.

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