aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/README.md
blob: 4598b7829a1a25c1fe41384722bb1ad4c3c48964 (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.