aboutsummaryrefslogtreecommitdiffstats
path: root/yage
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-20 01:03:06 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-20 01:03:06 +0100
commit3be2d1bb66db121fd0a50daae62c1c38359d1c61 (patch)
tree1a7b23c3a5bd13b42ff524a1d451e1a006b4b0b0 /yage
parent6ff7c59466e0c9d4c9ad6324f3f819197506371f (diff)
downloadYAGE-3be2d1bb66db121fd0a50daae62c1c38359d1c61.tar.gz
YAGE-3be2d1bb66db121fd0a50daae62c1c38359d1c61.zip
#9 readme fix: Fixed
Diffstat (limited to 'yage')
-rw-r--r--yage/physics/README.md13
-rw-r--r--yage/physics/README.org27
2 files changed, 13 insertions, 27 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.
diff --git a/yage/physics/README.org b/yage/physics/README.org
deleted file mode 100644
index 0620cc93..00000000
--- a/yage/physics/README.org
+++ /dev/null
@@ -1,27 +0,0 @@
-#+ TITLE : README
-#+ DATE : <2017 - 04 - 17 Mon>
-#+ AUTHOR:
-#+ EMAIL : yannherklotz @yann - arch
-#+ OPTIONS : ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline
-#+ OPTIONS : author : t c : nil creator : comment d : (not"LOGBOOK") date : t
-#+ OPTIONS : e : t email : nil f : t inline : t num : t p : nil pri : nil stat : t
-#+ OPTIONS : tags : t tasks : t tex : t timestamp : t toc : t todo : t | : t
-#+ CREATOR : Emacs 25.1.1(Org mode 8.2.10)
-#+ DESCRIPTION:
-#+ EXCLUDE_TAGS : noexport
-#+ KEYWORDS:
-#+ LANGUAGE : en
-#+ SELECT_TAGS : export
-
-*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