3
votes
2answers
121 views
Finding the spin of a sphere given X, Y, and Z vectors relative to sphere
I'm using Electro in Lua for some 3D simulations, and I'm running in to something of a mathematical/algorithmic/physics snag.
I'm trying to figure out how I would find the "spin" …
5
votes
8answers
343 views
Broad-phase collision detection methods?
I'm building a 2D physics engine and i want to add broad-phase collision detection, though i only know of 2 or 3 types:
Check everything against everytihng else (O(n^2) complexi …
4
votes
3answers
157 views
Runge-Kutta (RK4) integration for game physics
Gaffer on Games has a great article about using RK4 integration for better game physics. The implementation is straightforward but the math behind it confuses me. I understand deri …
9
votes
1answer
401 views
Bullet Physics - Apply Torque Impulse in Body’s Local Space
Hello,
I'm currently evaluating the Bullet Physics Library for a 3D space game I'm writing using C++ and Ogre3D. I've gotten Ogre3D and Bullet integrated nicely by deriving from b …
12
votes
30answers
774 views
Does a background in physics make you a better programmer?
I am wondering whether to do some extra studying around Physics as some people have advised me that having a background in Physics is good for programmers to have. I would be inte …
1
vote
1answer
41 views
Applying Coefficient of Restitution in a collision resolution method
I have a collision resolution method in my physics engine, that goes like this:
Vector2 n1pos = n1.NonLinearSpace != null ? n1.NonLinearPosition : n1.Position;
Vector2 n2pos = n2. …
0
votes
3answers
85 views
Area constraint blows up my physics simulation if a body slams into it too fast
I have a physics simulation and it allows you to place area constraints, so that the bodies within will not exit that area. However if an atom goes past one of the "walls" of the a …
1
vote
1answer
109 views
Order of calculation and iterations for physics engines
I'm writing a physics engine that uses Verlet integration, and i can't get some constraints to work right. Some (like a bond/weld constraint) are extra "soggy" and aren't stiff eno …
1
vote
1answer
96 views
Verlet Integration is blowing up my physics engine
I'm building a physics engine and i had some sort of "pseudo-verlet" thing going and i wanted to upgrade it to "real" verlet. So i found an article and set to work. After i added w …
1
vote
5answers
240 views
C# -Trigonometric code explaination (Physics)
This piece of code has been taken from a game built with XNA framework. I'd like some explanation of how it works in terms of trig and physics.
ball.velocity = new
Vector2((f …
0
votes
1answer
34 views
How to implement restitution coefficient into a simple physics engine?
I am writing a simple 2d physics engine that supports circle-circle collision and i can't figure out how to retrofit my collision resolution method to add restitution. How is a res …
0
votes
1answer
40 views
How to make soft springs with constraints being iterated?
I'm trying to add springs to my physics engine, and while the algorithm itself works, they are incredibly stiff ( have to feed in values <= about 0.1 to get any visible motion o …
1
vote
3answers
255 views
Units of a Fourier Transform (FFT) when doing Spectral Analysis of a Signal
My question has to do with the physical meaning of the results of doing the spectral analysis of a signal, or, put another way, of interpreting what comes out of throwing a signal …
1
vote
2answers
86 views
How do you animate a display object in an arc in AS3?
This is for a game in a flash AS3 only project.
the player controls a character with a gun. By clicking on the screen the gun fires a missile in an arc to the point clicked.
Wha …
40
votes
18answers
1k views
Practices for programming in a scientific environment?
Background
Last year, I did an internship in a physics research group at a university. In this group, we mostly used LabVIEW to write programs for controlling our setups, doing da …
