From 5c8c822546039e7422a0dcb0841adbcbc9fb4d60 Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Mon, 23 Sep 2024 18:41:23 +0200 Subject: Minor work on orientation and IDs --- README.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 README.md (limited to 'README.md') 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 +... + + -- cgit v1.2.3