Search found 20 matches

by godlike
Fri Mar 19, 2010 12:59 pm
Forum: General Bullet Physics Support and Feedback
Topic: suggestion on doxygen generated docs
Replies: 0
Views: 1565

suggestion on doxygen generated docs

You could try to build the docs with:

SEARCHENGINE = YES

and a nice search engine will appear on the left frame. It will improve the usability of the docs IMHO
by godlike
Wed Mar 17, 2010 9:03 pm
Forum: General Bullet Physics Support and Feedback
Topic: A little help with building a particle emitter
Replies: 5
Views: 5078

Re: A little help with building a particle emitter

Anyone? I promise I will write an article in the wiki in the end
by godlike
Mon Mar 15, 2010 10:08 pm
Forum: General Bullet Physics Support and Feedback
Topic: A little help with building a particle emitter
Replies: 5
Views: 5078

A little help with building a particle emitter

Im trying to build a particle emitter using bullet but I bumped into a few problems. 1) Every particle (rigid body) has a life. When it dies I want to deactivate it so it cannot be part of any collision/simulation calculations. Whats the best way to do that? Obviously the btRigidBody::setActivationS...
by godlike
Mon Feb 22, 2010 1:45 pm
Forum: General Bullet Physics Support and Feedback
Topic: Static linking of bullet in my app (linux, gcc)
Replies: 2
Views: 8901

Re: Static linking of bullet in my app (linux, gcc)

After a long search this is the magic link command: gcc <list of .o> -rdynamic -L../../../bullet_svn/src/BulletSoftBody -L../../../bullet_svn/src/BulletDynamics -L../../../bullet_svn/src/BulletCollision -L../../../bullet_svn/src/LinearMath -Wl,-Bstatic -lBulletSoftBody -lBulletDynamics -lBulletColli...
by godlike
Sun Feb 21, 2010 5:51 pm
Forum: General Bullet Physics Support and Feedback
Topic: Static linking of bullet in my app (linux, gcc)
Replies: 2
Views: 8901

Static linking of bullet in my app (linux, gcc)

I've build bullet statically and successfully created a few .a files. Now I want to use this static libs in my app. My link command line is: -rdynamic -Bdynamic -lGL -lGLU -lSDL_image -ljpeg -lGLEW -Bstatic `sdl-config --static-libs` -L../../../bullet_svn/src/BulletDynamics -lBulletDynamics -L../../...