Bullet is an Open Source collision detection and rigid body dynamics library. The Library is free for commercial use and open source under the ZLib License.

learn more… | top users | synonyms

0
votes
1answer
59 views

Can't solve undefined references

I have the following errors when compiling in Eclipse: make: *** [ogre-bullet-playground] Error 1 undefined reference to `btCapsuleShape::btCapsuleShape(float, float)' undefined reference to ...
0
votes
0answers
20 views

Which DebugDrawModes are used in most Bullet Demos?

So I have created а btIDebugDraw implementation based on demos OpenGL renderer example and I wonder how to get meshes to be drawn with some default texture as thay have in most samples: It seems ...
-4
votes
0answers
67 views

Integrating Qt with Bullet Physics [closed]

I'm currently building a 3D application demo using Qt OpenGL and bulletphysics. Right now, I'm stuck building the project. How to integrate the bulletphysics library with the Qt Project? or how to ...
0
votes
1answer
29 views

Bullet 2.81: Unable to find installed header?

OS: Ubuntu 12.04 64-bit I've installed Bullet Physics from source, and am attempting to #include <btBulletDynamicsCommon.h> from a source file. When I compile the source file, I get the ...
0
votes
2answers
84 views

Removing a rigid body, but still getting collisions for it

What is the correct way to remove a rigid body, I am doing just this to remove it: void removeRigidBody(btDynamicsWorld* pDynamicsWorld, btRigidBody* rb) { pDynamicsWorld->removeRigidBody(rb); ...
0
votes
3answers
102 views

How fast is PhysX on GPU compared to physics engines on CPU?

I have an application that is written to use the Bullet physics engine. I am running it on an Intel i7 2600K CPU with 8 cores. The application has to process millions of chunks of physics work, each ...
1
vote
1answer
65 views

A ball inside a sphere using Bullet

I'm new at Bullet and all 3D and phisycs stuffs, so don't be angry :) I neen to create a big static rigid sphere and a little dynamic one inside. I want to use the big one like a bottle, so little ...
1
vote
0answers
30 views

How to deep copy a btTriangleMesh in Bullet Physics?

I use Bullet Physics and I need to copy an instance of the btTriangleMesh type. // the variable is a class member btTriangleMesh triangles; My aim is to change the collision shape of a body to a ...
0
votes
0answers
25 views

Bullet libGDX - Camera follow entinty

How can i create camera that will follow my entity. For now I have static body and i just move it by constant value and then move camera the same. But I want make this body dynamic. This value will ...
0
votes
0answers
28 views

How to get getCollisionObject from btBroadphaseProxy?

I want to get btCollisionObject at btOverlapFilterCallback stage like we do with btCollisionObjectWrapper::getCollisionObject(); in the ContactResultCallback/NearCallback stage. Main point here is to ...
0
votes
1answer
48 views

Clamp rotatation angle of a rigid body

I recently attached a rigid body to the camera in my 3d game, so that it can collide with the environment. By now mouse movement directly rotates the rigid body. #include ...
0
votes
2answers
85 views

Corona SDK Physics goes on and off while object is in motion

Below is my main file. essentially what is happening is that the collision is working when the "rect" object is not moving but as soon as i move the rect object, the collision stops taking affect. I ...
1
vote
1answer
72 views

What does having an inertia tensor of zero do in Bullet?

In the Bullet Physics library, when constructing a rigid body the default argument for the inertia tensor is the zero vector. My understanding of inertia is fairly elementary but from the equation ...
4
votes
1answer
94 views

What I came up with by trial and error works, could you explain why?

First of all, I wasn't sure if this question is welcome here and I checked the FAQ and found out that "I would like others to explain" questions are. The main issue is that I need to store rotations ...
0
votes
0answers
12 views

btActionInterface::update not called randomly

I try to make my own kinematic character controller and i have a problem :( Let me explain : I implement the btActionInterface interface and register it to the world : ...
0
votes
0answers
35 views

Debug lines in physics not lineing up on fast spinning object

I noticed that when an object is spinning quite fast and I pause my simulation the debug lines drawn by bullet do not line up with the graphical object. Wireframe debug rendering: ...
0
votes
0answers
41 views

Changing Collision Shape of Rigid Body Doesn't Affect Any Touching Rigid Bodies

I'm using the java port of the bullet physics library. I've run into an interesting problem. If I create a triangle mesh rigid body and place a box shaped rigid body on top of the triangle mesh rigid ...
0
votes
0answers
34 views

Physical Abstraction Layer compilable code for Bullet

I've posted this on the PAL sourceforge discussion forum but it doesn't seem to be very frequented, so I thought I'd ask here as well: hi, where do i get the latest STABLE (i.e. compilable) ...
0
votes
0answers
24 views

collada physics parser/importer

i am working on the beginnings of a game, and am wondering how i can import physics data into the game's physics engine. I am using bullet as the physics library. I use blender for model creation and ...
0
votes
0answers
39 views

PhysiJS - explain simulation stepTime and maxSubSteps

Is there any documentation on these arguments to the simulate() tick method? Since PhysiJS uses ammo.js, which is a port of bulletphysics, perhaps someone can help me find some text which explains ...
1
vote
0answers
84 views

bullet physics - how to compensate for smaller fixed time steps when stepping the simulation

I wonder how to compensate when calling DynamicsWorld->stepSimulation(), say twice as fast, for instance running at 60 fps compared to 30 fps, while mantaining the physics' behavior in the faster ...
1
vote
1answer
113 views

Bullet physics engine: why does gravity not accelerate?

I have some rigidbodies with mass of 30 and restitution of 0.6 and friction of 0. Gravity is set to -15 (I have also tried higher values up to -1000). The rigid bodies fall very slowly and also do ...
0
votes
1answer
117 views

How to enable SSE/SSE2 on Code::Blocks?

So I was trying to compile some code (Bullet Physics demos to be specific), and an error came up that said SSE and SSE2 were not enabled. I checked the compiler flags in Code::Blocks, and SSE/SSE2 ...
0
votes
1answer
39 views

Panda3D: How to orient BulletGenericConstraint?

By default, the BulletGenericConstraint in Panda3D is oriented along positive X axis. The setAngularLimit method can be used to set only along X, Y or Z axis. How do I join two bodies which do not ...
2
votes
1answer
76 views

Which constraint to keep a fixed distance between bodies?

I have two spheres which should always lie at a constant distance from each other. They can move around with all degrees of freedom as long as their distance remains constant. Imagine them to be ...
1
vote
0answers
37 views

How to make collisions affect rotation only on X and Z axes in lib Bullet?

Having a terrain and some mesh objects placed as STATIC I throw capsule like objects onto my world (for example agents my engine wants to navigate). I need tham to bahaive as normal collidable ...
0
votes
1answer
79 views

How to set color on collision object in Bullet?

So there I have made a nice debug drawer... And get all world objects drown... Now I want some to be drawn with special color (eg bullets player, enemies mesh representations). So how to spesify mesh ...
0
votes
0answers
44 views

btGeneric6DofSpringConstraint not working properly

I am trying to connect two bodies (one static and one dynamic) using a spring in Bullet. I am using the btGeneric6DofSpringCOnstraint. The dynamic body hangs from the static body. During the ...
1
vote
1answer
255 views

How to change gravity axis/direction in Blender

I am making a videogame in Blender Game Engline, and want to be able to adjust the direction gravity pulls objects. I can change scene Z gravity in a script, but that's one-dimensional along the Z ...
0
votes
1answer
51 views

Bullet Physics Headers : No such file or directory

When I try to use a header file in my project ( I created the .a files and linking before), I get the next error: fatal error: <bullet header.h> : No such file or directory I create the ...
1
vote
1answer
209 views

How to implement the btIDebugDraw interface of Bullet in OpenGL 4.0

Bullet has an implementation of the btIDebugDraw interface in older OpenGL which is used to draw the physics world for debugging. The interface is like this : class GLDebugDrawer : public ...
1
vote
0answers
37 views

jBullet - 6DOFConstraint severe oscillation

I have made a simple multi-cyclinder snake body. I have a 6DOFConstraint between each body and the angles are controlled by increasing/decreasing the upper and lower limits of the rotation as such to ...
0
votes
0answers
81 views

Physics-based Walking (from A New Zero)

I saw this video and I was amazed, and naturally, I want to try to do it myself. http://www.youtube.com/watch?v=P_DeZUg9HiY Does anyone have any idea how he made the character walk? Look at the video ...
6
votes
0answers
171 views

Configure Bullet Physics for speed

How to configure Bullet engine for speed, not for physics accuracy? For example, is it possible to increase friction, so that objects become stationary more quickly? Currently, I am able to do only ...
1
vote
0answers
230 views

BulletPhysics “setLinearVelocity” not moving

I'm trying to create an FPS player that has a RigidBody using OpenGL and BulletPhysics. The only problem is to make the box move. I tried it with setLinearForce, applyForce and many others but is just ...
1
vote
1answer
324 views

Change btRigidBody's position/orientation on-the-fly in Bullet Physics

I know it breaks physics laws, but although there are often practical reasons to change instantaneously the position and orientation of a body in a game, most physic simulation libraries won't allow ...
0
votes
0answers
98 views

Do soft bodies in Bullet physics require a separate vertex buffer for each instance on the screen?

Could someone enlighten me on how they work?As far as I know,they make a separate bounding volume for each instance on the screen and for soft bodies that's usually a detailed mesh and since they're ...
1
vote
1answer
111 views

Should Bullet physics be refactored to be used in a DirectX application?

I've played around with some of the examples and they look real good. However I noticed Bullet uses its own vector structs and math utilities. I'm using DirectXMath for the rest of the DirectX ...
0
votes
0answers
64 views

Bullet physics AppAllBulletDemos missing in Xcode

I'm following this tutorial: http://www.informit.com/articles/article.aspx?p=1914612 everything goes well and all the builds succeed, but I don't have the 61 targets he's taling about. In the targets ...
0
votes
2answers
114 views

some questions about irrlicht graphics engine

Does Irrlicht have good physics simulation? I saw it has collision detection but can it animate objects so they fall over, bump into each other and stuff like that? if it doesnt, can you use a physics ...
0
votes
3answers
342 views

How short int based masks work in C++ library Bullet?

How do short int based masks work in c++ (for example ones in Bullet)? I look at Bullets CollisionFilterGroups { DefaultFilter = 1, StaticFilter = 2, KinematicFilter = 4, DebrisFilter = ...
1
vote
0answers
187 views

Bullet Physics Hello World in QT on Mac

I'm having a problem creating a hello world Bullet project using QT on Mac. The Bullet libraries have been built and I am using the Hello World code found here Here is what the compile outputs: ...
1
vote
1answer
172 views

How do I get bulletphysics/bulletsharps' multithreading working?

That is to say, what is the minimum set of code I need to set up the BulletSharp physics engine wrappers' "DynamicsWorld" to use "BulletSharp.MultiThreaded.ParallelConstraintSolver"? Alternately, I ...
1
vote
2answers
114 views

BulletSharp crashing on application exit [closed]

Using the following startup: BulletSharp.DefaultCollisionConstructionInfo collisionConstructionInfo = new BulletSharp.DefaultCollisionConstructionInfo(); ...
3
votes
1answer
248 views

Bullet Physics Broadphase Filter Callback to filter individual shapes inside a compound body

Is there a way to set a Broadphase Filter Callback in Bullet Physics as follow: Compound dynamic bodies built from two shapes, say a cylinder and a box, where cylinders can only collide with ...
0
votes
3answers
202 views

Top-down object movement

If I was looking at a btRigidBody (in BulletPhysics, for example) from top down and I wanted to have the movement be so that when I press forward it will always go in its forward direction, even after ...
4
votes
1answer
259 views

BulletPhysic: contacts force/impulse

I wish to detect when one (ball) touches another object (target) and I wish to know the impulse of that contact. I know three ways to detect contacts gContactAddedCallback or int ...
1
vote
1answer
182 views

(Bullets Physics) How to avoid tunneling with compound shapes resembling rings?

I've got some compound shapes built from four rectangular shapes resembling a squared frame, the idea is to use them as rough aproximations of rings The rings are tossed around pegs, and several ...
1
vote
1answer
133 views

“Logitech G25 racing wheel” python api for Blender?

I'm working on a car simulation project in Blender using python scripting. So far, I can control my vehicle(car) using simple keyboard sensors but now I want to use "Logitech G25 racing wheel" ...
1
vote
1answer
109 views

Bullet Physics and NAN values

Sometimes some objects get NAN values in world simulated with Bullet Physics. (very rare) What is the correct way to handle it? Is there build in Bullet Physics functionality to detect such objects to ...

1 2 3