A physics engine is computer software that provides an approximate simulation of certain physical systems, such as rigid body dynamics (including collision detection), soft body dynamics, and fluid dynamics, of use in the domains of computer graphics, video games and film.
0
votes
0answers
4 views
How fast is PhysX 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
39 views
Farseer physics mass/weight issue
I have created a platformer game using farseer physics with a player and some objects etc but are having some problem with mass on objects.
The player is composed by a wheel and a torso connected ...
0
votes
1answer
38 views
How to get a ball/sphere to stop
I got a field in unity3d that has some depressions in it (like small holes). The field's slope always leads towards the nearest depression.
A sphere is dropped at random somewhere in the field, rolls ...
0
votes
1answer
67 views
What would be “realistic” values for gravity, mass and contact material in cannon.js? [closed]
i've looked in the cannon.js examples, and they seem to mostly use between -10 and -40 for gravity and something between 1 and 10 for the mass of an object (or CANNON.RigidBody as they are called), ...
4
votes
3answers
67 views
How to handle multiple simultaneous elastic collisions?
I'm computing the result by colliding pairs of 2D convex objects (without rotation), using the basic equations on wikipedia. However, when there are dependencies, like two objects hitting another ...
0
votes
2answers
30 views
Most effective way to handle velocity
Basically, I am curious if xVel and yVel variables would work the best, or if I should use a velocity and a direction variable.
Also, this is how it would be handled on update: (psuedocode)
For xVel ...
0
votes
2answers
52 views
Chipmunk Physics Positioning
I've looked around quite a bit and haven't been able to find a concise answer to this question. For my Cocos2D game I have integrated the Chipmunk physics engine. On initialization, I setup the ...
0
votes
1answer
56 views
sensorGroup and sensorMask combination for ships and bullets in Nape
I have multiple spaceships (SHIP_CB CbType), that can all shoot missiles (BULLET_CB CbType). How do I set up there sensorGroup, sensorMask and InteractionListeners so I get the following behaviour:
...
1
vote
0answers
81 views
Strange behavior of Prismatic Joint of javascript port of Box2D engine
Lifting block on prismatic joint (b2PrismaticJointDef) on upper point gives impulse to the dynamic body that lays on lifting block surface even if lifting block doesn't move at all.
Maybe it's bug of ...
0
votes
1answer
83 views
How to change position of debug draw visualization of Box2D.js?
I'm creating game with the world bigger than screen. So i need to move Debug Draw according to visualization. In flash port to archive this issue we are usually move DisplayObject that uses as target ...
0
votes
0answers
19 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
2answers
77 views
Nape Moving Platform
Okay Im relatively new to nape and Im in the process of making a game, I've made a Body called platform of type KINEMATIC, and I simply want to move it back a forth in a certain range on the stage. ...
0
votes
1answer
65 views
Android physics engine (camera on top)
I'm developing a game for Android, but I need an physics engine that allows me detect and response an collision (I developed a simple game with Nape Physis), but I need that this physics engine allow ...
0
votes
1answer
185 views
as3 continuous movement of object with touch event
i am attempting to make an interactive scene fot my nexus 7 using actionscript. i am attempting to make a nape body to move continuously while a button is being pressed. the trace(event.target.name); ...
1
vote
1answer
96 views
nape physics attaching a movie clip to multiple nape bodies. Implicit coercion error
i am trying to attach a movie clip to multiple nape bodies but am getting the following error.
Line 118 1067:
Implicit coercion of a value of type flash.display:MovieClip
to an unrelated type ...
0
votes
2answers
154 views
Pendulum simulation
I am trying to write simple pendulum simulation in Pygame. The point is that I am trying to simulate directly the forces on the pendulum (gravity and tension) rather than solving the differential ...
0
votes
0answers
87 views
Does anyone have a good 2D physics engine? [closed]
So I'm coding a spaceflight simulator in C++ (Allegro 5) and I'm coding my own physics. But I'm trying to find a physics engine that will be a good replacement. I've looked for 2D physics engines, and ...
0
votes
1answer
91 views
building a mini physics engine in objective c / cocos2d
I'm trying to build a super simpel physics engine just as a form of training and to understand at least the basics of creating game physics. I'm aware of things like box2d and chipmunk that offer a ...
2
votes
1answer
61 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 ...
0
votes
1answer
142 views
Rectangle physics in 2D. Am I doing this right?
I'm writing a 2D game, in which I would like to have crate-like objects. These objects would move around, like real crates do. I have a hypothetical idea of how I would like to achieve that:
...
0
votes
1answer
134 views
Angry bird Physic impact/collision
How do I create a motion impact/collision like angry bird. When the object hit the box and wood, their interaction and the flow of the animation will to the right position. I need to learn from ...
1
vote
1answer
97 views
Is there an upper limit on velocity when using box2d?
I'm using box2d for physics simulation. I'm moving a circle using arrow keys by applying impulse on the body when ever a key is pressed. Unfortunately, the circle moves excruciatingly slow and doesn't ...
0
votes
1answer
41 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 ...
0
votes
1answer
44 views
Hooking up Chipmunk bodies to UIKit components?
I'm trying to get to grips with using Chipmunk (not the Obj-C version) with UIKit components on iOS, and still struggling immensely.
I'm trying to establish how, in the ChipmunkColorMatch example in ...
0
votes
1answer
213 views
How to move the PhysicsSprite in box2d
I am having a physicsSprite of kinematics body type and I want to move the body and sprite bit down and back to its position. I tried it like this Inside update method:
for (NSValue *bodyValue in ...
0
votes
0answers
108 views
Python 3 2D physics modules? [closed]
I'm working on a 2D game in bird's-eye-view. I would like some sort of physics module that lets me simulate the physics of objects where I would be able to specify the resistance applied on the ...
0
votes
0answers
61 views
Actionscript-create grid made of objects held in place by 'magnetic force'
I have a static grid composed of spheres.
I want to make the spheres in the grid behave as though they were held in a force field, so a user can 'poke a hole' in the grid, displace the spheres but ...
0
votes
2answers
207 views
C++ Sprite class with Vector Object as Member
Ok, I'm having this problem with my Sprite class. Basically the sprite class should have a object of class Vector as its member with Vector being a class with both angle and speed. The Vector class ...
0
votes
0answers
145 views
Need Guidance Making HTML5 Canvas Game Engine
So I have some free time this winter break and want to build a simple 2d HTML5 canvas game engine. Mostly a physics engine that will dictate the way objects move and interact(collisions, etc). I made ...
0
votes
0answers
52 views
Ball Randomly Slowing Down
Currently, I have a program that has a ball, bouncing back and forth. In order to find out how fast it's bouncing, I made this:
b2Vec2 velocity = blueCircleBody->GetLinearVelocity();
float ...
0
votes
0answers
117 views
Physics Engine for WPF .net 4.5
I'm searching Physics Engine for WPF and find this question.
But the Farseer and Physics Helper both don't support WPF and I can't find the download of Physics Helper 3 mentioned in ...
1
vote
0answers
33 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
1answer
102 views
AndEngine with Box2D Extension
I am newbie to AndEngine. I have done some research and found two extensions for Box2D. One is developed by Nicholas Gramlich itself: https://github.com/nicolasgramlich/AndEnginePhysicsBox2DExtension
...
1
vote
0answers
40 views
physicshelperxaml revolve
I am a beginner so please bear with me.
I am using the physics helper XAML library (Farseer) to use physics inside my app.
Currently, I am having issues with the following
Having a object in ...
0
votes
0answers
75 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 ...
0
votes
1answer
62 views
Physics Flex library for Mobile Programming [closed]
I'm looking for a physics library that is compatible with Flex 4.
Any recommendations?
Will any physics library be compatible with iPhone and Android ?
0
votes
1answer
117 views
Having problems understanding body positioning in Box2d. Any pointers on how things work?
I'm struggling to learn and understand box2d. Here is my problem:
I'm trying to make a simple car, the car body looks like this for now:
Now I'm trying to add a wheel, I create the wheel body and ...
3
votes
1answer
159 views
Sharing data between graphics and physics engine in the game?
I'm writing the game engine that consists of few modules. Two of them are the graphics engine and the physics engine.
I wonder if it's a good solution to share data between them?
Two ways (sharing ...
0
votes
1answer
83 views
can't add an object to NSMutableArray
Good day !
I use physics engine "chipmunk". Try to create dynamic object by clicking. AddBalls() creates desired body and shape. By clicking it have to generate a new object and put it in array.
...
0
votes
1answer
93 views
Game programming which library to start with? [closed]
I just started learning about game programming and so far i have done some great things with OpenGL/GLUT (i started with this just out of curiosity and to be sure to have a solid foundation)
The ...
0
votes
1answer
95 views
How to create a floor with Chipmunk library
I'm using Ruby and, of course, the Ruby bindings to Chipmunk as well as the Chingu/Gosu game libraries. Seems like the syntax is different but otherwise I assume it's the same as Chipmunk C. How do I ...
-2
votes
4answers
126 views
What is a good way to check for collisions between the objects in an array? [closed]
I have been doing a for loop inside another for loop in order to get 2 objects from the array at the same time, but there must be a better way. I just want to check if they collide to then remove them ...
0
votes
0answers
57 views
How to rotate a JigLibJs JPlane by 90 degrees in a THREE scene
I am trying to let a dice roll in a THREE scene. For this purpose, I use the JigLibJS physics engine. Everything works well so far, but I have problems to understand the rotation value I have to set ...
0
votes
1answer
671 views
Bullet Physics Rigid Body bounces off surfaces
I wrote a player controller for my game that uses a rigid body to give the player physics. I set both restitution and friction to 0, and the mass to 80. My terrain has the exact same properties, just ...
1
vote
4answers
238 views
how do I calculate the geometric product of two vectors?
The dot product of two vectors is a.x*b.x + a.y*b.y + a.z*b.z. Likewise there is a calculation for for the cross product of two vectors. Both of these calculations pop up even within Geometric algebra ...
3
votes
1answer
212 views
iOS sliding distance with accelerometer
I'm trying to measure the distance a device slides using the accelerometer. This is how I'm doing it:
- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration ...
1
vote
0answers
218 views
Recalculating AABB correct after rotation/translation of an object
I've seen this topic around here but it didn't really help me solve the problem :( I've tried to implement the code kinda like the same way but something isn't working properly. Unfortunately I can't ...
0
votes
1answer
107 views
Move a sprite to touched point increasing velocity the longer the touch
How do I move a sprite to touched point on the x axis increasing velocity.x. The longer the touch the higher velocity goes, then when it comes into a certain range of the touch point or the user ...
4
votes
2answers
463 views
Basics of D3's Force-directed Layout
I'm plowing into the exciting world of force-directed layouts with d3.js. I've got a grasp of the fundamentals of d3, but I can't figure out the basic system for setting up a force-directed layout.
...
2
votes
1answer
515 views
2D Physics engine to simulate gravity using images
I am searching for a 2D physics engine to simulate gravity using images, preferably PNG images with transparency. So the engine will know how to calculate the collision base on the opaque parts of the ...



