Bullet: Difference between revisions
GergelyPatai (talk | contribs) Corrected a line in the example execution script |
GergelyPatai (talk | contribs) Added sections and todo list. |
||
Line 1: | Line 1: | ||
== Overview == | |||
[http://www.bulletphysics.com/Bullet/wordpress/bullet Bullet] is a professional open source multi-threaded 3D Collision Detection and Rigid Body Dynamics Library written in C++. It is free for commercial use under the zlib license. | [http://www.bulletphysics.com/Bullet/wordpress/bullet Bullet] is a professional open source multi-threaded 3D Collision Detection and Rigid Body Dynamics Library written in C++. It is free for commercial use under the zlib license. | ||
== Installation == | |||
A cabalised wrapper is available: http://hackage.haskell.org/package/bullet | A cabalised wrapper is available: http://hackage.haskell.org/package/bullet | ||
Line 14: | Line 18: | ||
cabal install bullet | cabal install bullet | ||
== Todo == | |||
* vehicle interface | |||
* constraints | |||
* soft body system | |||
== OpenGL example == | |||
The example on the screenshot below can be found in the package. You have to compile it by hand. Make sure that OpenGL and GLUT is installed, then enjoy: | The example on the screenshot below can be found in the package. You have to compile it by hand. Make sure that OpenGL and GLUT is installed, then enjoy: |
Revision as of 16:50, 26 November 2009
Overview
Bullet is a professional open source multi-threaded 3D Collision Detection and Rigid Body Dynamics Library written in C++. It is free for commercial use under the zlib license.
Installation
A cabalised wrapper is available: http://hackage.haskell.org/package/bullet
Note that you have to install the library before installing the package:
svn checkout http://bullet.googlecode.com/svn/trunk/ bullet-read-only cd bullet-read-only cmake . make sudo make install
Now you can install the Haskell binding:
cabal install bullet
Todo
- vehicle interface
- constraints
- soft body system
OpenGL example
The example on the screenshot below can be found in the package. You have to compile it by hand. Make sure that OpenGL and GLUT is installed, then enjoy:
cabal unpack bullet cd bullet-x.x.x/Examples ghc --make -O2 BulletExample ./BulletExample
You can use the arrows to navigate the scene and P to pause/unpause.