diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -59,6 +59,7 @@ Some examples of the different modes, from the same input file with random numbe ## Example 2 Example of a simple sinusoid ### Star +``` 10 ┌──────────────────────────────────────────────────────────────────────┐ 8 │ ********** │ 6 │ ***** ***** │ @@ -69,7 +70,9 @@ Example of a simple sinusoid -6 │ **** **** │ -8 │******** **********│ -10└──────────────────────────────────────────────────────────────────────┘ +``` ### Ascii +``` 10 ┌──────────────────────────────────────────────────────────────────────┐ 8 │ ╭─────────╮ │ 6 │ ╭────╯ ╰────╮ │ @@ -80,14 +83,17 @@ Example of a simple sinusoid -6 │ ╭───╯ ╰───╮ │ -8 ├───────╯ ╰──────────┤ -10└──────────────────────────────────────────────────────────────────────┘ +``` ### Braille +``` 10 ┌───────────────────────────────────┐ -8 │ ⠐⠢⠄ ⠠⠔⠂ │ -6 │ ⠢ ⠔ │ -3 │ ⠐⠄ ⠠⠂ │ -1 │ ⠢ ⠔ │ --1 │ ⠂ ⠐ │ --3 │ ⠐⠄ ⠠⠂ │ --6 │ ⠐⠢ ⠔⠂ │ --8 │⠒⠒⠒⠤ ⠤⠒⠒⠒⠤│ +8 │ ⠈⠑⠢⠤⠤⠔⠊⠁ │ +6 │ ⠑⠄ ⠠⠊ │ +3 │ ⠈⠢ ⠔⠁ │ +1 │ ⠑⠄ ⠠⠊ │ +-1 │ ⠡ ⠌ │ +-3 │ ⠈⠢ ⠔⠁ │ +-6 │ ⠈⠑⠄ ⠠⠊⠁ │ +-8 │⠉⠉⠉⠒⠄ ⠠⠒⠉⠉⠉⠒│ -10└───────────────────────────────────┘ +``` |