summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-09-23 18:41:23 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-09-23 18:41:23 +0200
commit5c8c822546039e7422a0dcb0841adbcbc9fb4d60 (patch)
tree92ab621b37d810718896a85ad4d0a5450cf6d546 /README.md
parenta0d604d029d9222761393ea5d8d9ddde6788b633 (diff)
Minor work on orientation and IDsHEADmaster
Diffstat (limited to 'README.md')
-rw-r--r--README.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d531c6d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,50 @@
+# Icosahedrical Destruction
+
+## Triangle Neighbours
+
+Starting at zero, the described operations match while the remainder "falls out".
+The next level takes over then. And so on ....
+
+### Level - 0
+
+0 x 1 => 1
+0 x 2 => 2
+0 x 3 => 3
+// Mirror
+1 x 1 => 0
+2 x 2 => 0
+3 x 3 => 0
+
+### Level - 1
+
+0-1 x 2 => 2-3
+0-1 x 3 => 3-2
+0-2 x 1 => 1-3
+0-2 x 3 => 3-1
+0-3 x 1 => 1-2
+0-3 x 2 => 2-1
+// Mirror
+1-2 x 1 => 0-3
+1-3 x 1 => 0-2
+2-1 x 2 => 0-3
+2-3 x 2 => 0-1
+3-1 x 3 => 0-2
+3-2 x 3 => 0-1
+
+### Level - 2
+
+0-1-1 x 2 => 2-3-3
+0-1-1 x 3 => 3-2-2
+0-1-2 x 3 => 3-2-1
+0-1-3 x 2 => 2-3-1
+0-2-1 x 3 => 3-1-2
+0-2-2 x 1 => 1-3-3
+0-2-2 x 3 => 3-1-1
+0-2-3 x 1 => 1-3-2
+0-3-1 x 2 => 2-1-3
+0-3-2 x 1 => 1-2-3
+0-3-3 x 1 => 1-2-2
+0-3-3 x 2 => 2-1-1
+...
+
+