aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/README.md
blob: c1419155e9b791340c6d5e935dc67a81ea97a93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Physics Engine

## Acceleration
    
speed and position:

I have
```
a = dv / dt;
v = dp / dt;
```

I am going to use the second order runga kutta method with a = 0, b = 1, alpha = 1 / 2 and beta = 1 / 2.