ODE's quickstep solver with Bullet

sssa2000
Posts: 12
Joined: Thu Oct 26, 2006 8:36 am

ODE's quickstep solver with Bullet

Post by sssa2000 »

Anybody know there is an up-to-date projectfile to use ODE's quickstep solver with Bullet?

i google it, but i can not find it , can anyone tell me?
many thanks
User avatar
Erwin Coumans
Site Admin
Posts: 4221
Joined: Sun Jun 26, 2005 6:43 pm
Location: California, USA

Re: ODE's quickstep solver with Bullet

Post by Erwin Coumans »

sssa2000 wrote:Anybody know there is an up-to-date projectfile to use ODE's quickstep solver with Bullet?

i google it, but i can not find it , can anyone tell me?
many thanks
The projectfile is in Bullet/msvc/8/libquickstep.vcproj (replace 8 with your version of msvc)

You don't really need this projectfile, you can also manually add all the files from Bullet/Extras/quickstep into your project.

See the CcdPhysicsDemo, enable the #define COMPARE_WITH_QUICKSTEP
CcdPhysicsDemo wrote: //following define allows to compare/replace Bullet's constraint solver with ODE quickstep
//this define requires to either add the libquickstep library (win32, see msvc/8/libquickstep.vcproj) or manually add the files from Extras/quickstep//#define COMPARE_WITH_QUICKSTEP 1
Thanks,
Erwin