aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/README.md
diff options
context:
space:
mode:
authorTravisBot <>2017-09-21 23:32:46 +0000
committerTravisBot <>2017-09-21 23:32:46 +0000
commit1a8ec165031af3b860028ef1b360acc8e7baf9e6 (patch)
treeb9d2e956005b4de847417baf4a66ab3f028f1bc1 /yage/physics/README.md
parentf5ecbc445977654e84120b3b02a9fe5d86dae5c8 (diff)
downloadYAGE-1a8ec165031af3b860028ef1b360acc8e7baf9e6.tar.gz
YAGE-1a8ec165031af3b860028ef1b360acc8e7baf9e6.zip
Rebuilding documentation
Diffstat (limited to 'yage/physics/README.md')
-rw-r--r--yage/physics/README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/yage/physics/README.md b/yage/physics/README.md
new file mode 100644
index 00000000..c1419155
--- /dev/null
+++ b/yage/physics/README.md
@@ -0,0 +1,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.