Skip to main content

Questions tagged [euler-method]

Filter by
Sorted by
Tagged with
0 votes
1 answer
72 views

I am working on very basic physics engine and I used euler interation which works like below, ...
videogamechef's user avatar
5 votes
2 answers
746 views

I want to simulate a mechanic object like this: ...
mskr's user avatar
  • 233
2 votes
1 answer
667 views

I'm a little confused over using integration to move a sprite. This is how I've always achieved this: ...
BungleBonce's user avatar
  • 1,937
6 votes
1 answer
981 views

Recently, I've implemented and compared a number of basic integrators for my physics engine. The 3 that gave me the best results are RK4, Symplectic Euler, and Verlet Velocity, but I think I need ...
MindSeeker's user avatar
1 vote
1 answer
315 views

I've been reading this awesome simulation of the actual Apollo 17 descent: http://www.braeunig.us/apollo/LM-descent.htm I've been trying to make my own simulation using Euler integration, with a time ...
Mister Smith's user avatar
0 votes
1 answer
3k views

I am applying air resistance to a falling sphere using the Euler method. If someone could have a look and tell me if my implementation is correct or offer any tips, it would be highly appreciated. ...
user346443's user avatar
1 vote
2 answers
15k views

So, for a game project I'm going to be working on I need to make a fully working 3D fluid simulator in Unity3D using C#, that can work in real time. The only problem is, I've never done anything like ...
Timothy Williams's user avatar
6 votes
3 answers
7k views

Programming in Java. Tinkering around with physics. My entities all have position and velocity. In the main loop, all I'm doing is applying gravity and bouncing off the edges, like so: ...
loneboat's user avatar
  • 219