about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-11-16 22:19:14 +0530
committerAndinus <andinus@nand.sh>2021-11-16 22:19:14 +0530
commitd945c6743848890761af2758e7bcec46514746da (patch)
tree8850233483535d9fe588b4dc38654d614177c039
parent93db302eed3130c3f54676d7c4e21d091285f6c2 (diff)
downloadfornax-d945c6743848890761af2758e7bcec46514746da.tar.gz
Update fornax format to include start and current path
-rw-r--r--README9
-rw-r--r--README.org9
2 files changed, 12 insertions, 6 deletions
diff --git a/README b/README
index 3b709af..dc4ff27 100644
--- a/README
+++ b/README
@@ -30,6 +30,10 @@ This collection includes:
 • Algorithms: Various algorithms solved in several programming
   languages.
 
+Writings:
+• Fornax: Generating 4.8 million frames:
+  <https://andinus.unfla.me/writings/2021/fornax-generating-4.8-million-frames.html>
+
 
 1 Demo
 ══════
@@ -43,9 +47,6 @@ This collection includes:
   • DFS-51-incomplete (upto 4,000 frames; 120 fps):
     <https://diode.zone/w/hWWaw8uKHCP5weUP5WWArD>
 
-  • Fornax: Generating 4.8 million frames:
-    <https://andinus.unfla.me/writings/2021/fornax-generating-4.8-million-frames.html>
-
 
 [https://andinus.unfla.me/resources/projects/fornax/2021-11-03-DFS-33.png]
 <https://andinus.unfla.me/resources/projects/fornax/2021-11-03-DFS-33.mp4>
@@ -187,9 +188,11 @@ This collection includes:
   ──────────────────────────
    Path              `.'
    Blocked           `#'
+   Start             `^'
    Destination       `$'
   ──────────────────────────
    Visited           `-'
+   Current Path      `~'
    Current Position  `@'
   ━━━━━━━━━━━━━━━━━━━━━━━━━━
 
diff --git a/README.org b/README.org
index bf6e2c6..1af9310 100644
--- a/README.org
+++ b/README.org
@@ -13,6 +13,10 @@ This collection includes:
 - Algorithms: Various algorithms solved in several programming
   languages.
 
+Writings:
+- Fornax: Generating 4.8 million frames:
+  https://andinus.unfla.me/writings/2021/fornax-generating-4.8-million-frames.html
+
 * Demo
 
 Solution for /DFS-33/, generated on /2021-11-03/ (click to play).
@@ -24,9 +28,6 @@ Solution for /DFS-33/, generated on /2021-11-03/ (click to play).
 - DFS-51-incomplete (upto 4,000 frames; 120 fps):
   https://diode.zone/w/hWWaw8uKHCP5weUP5WWArD
 
-- Fornax: Generating 4.8 million frames:
-  https://andinus.unfla.me/writings/2021/fornax-generating-4.8-million-frames.html
-
 * Installation
 
 ~fornax~ is written in Raku, it can be installed with ~zef~. You can also
@@ -138,9 +139,11 @@ A grid is printed for every iteration. Grids are composed of cells.
 |------------------+--------|
 | Path             | ~.~      |
 | Blocked          | ~#~      |
+| Start            | ~^~      |
 | Destination      | ~$~      |
 |------------------+--------|
 | Visited          | ~-~      |
+| Current Path     | ~~~      |
 | Current Position | ~@~      |
 
 - /Current Position/ is prioritized over /Blocked/ & /Destination/ symbol if