diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-06-12 15:11:33 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-06-12 15:11:33 +0200 |
commit | 0696a2618e70f9b1c7a00819549fe9840c2cbfaa (patch) | |
tree | 9f45bf6c11b8ea42b18c358f1093f03a387b9144 /README.md | |
parent | d696de49c85544be76b9ca132c86f640b5e44bc1 (diff) | |
download | textgraph-0696a2618e70f9b1c7a00819549fe9840c2cbfaa.tar.gz textgraph-0696a2618e70f9b1c7a00819549fe9840c2cbfaa.zip |
Fix logic error when choosing Braille characters
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -100,14 +100,14 @@ Example of a simple sinusoid ### Braille ``` 10 ┌───────────────────────────────────┐ -8 │ ⠈⠑⠢⠤⠤⠔⠊⠁ │ -6 │ ⠑⠄ ⠠⠊ │ -3 │ ⠈⠢ ⠔⠁ │ -1 │ ⠑⠄ ⠠⠊ │ --1 │ ⠡ ⠌ │ --3 │ ⠈⠢ ⠔⠁ │ --6 │ ⠈⠑⠄ ⠠⠊⠁ │ --8 │⠉⠉⠉⠒⠄ ⠠⠒⠉⠉⠉⠒│ +8 │ ⠠⠔⠊⠉⠉⠑⠢⠄ │ +6 │ ⠔⠁ ⠈⠢ │ +3 │ ⠠⠊ ⠑⠄ │ +1 │ ⠔⠁ ⠈⠢ │ +-1 │ ⠌ ⠡ │ +-3 │ ⠠⠊ ⠑⠄ │ +-6 │ ⠠⠔⠁ ⠈⠢⠄ │ +-8 │⠤⠤⠤⠒⠁ ⠈⠒⠤⠤⠤⠒│ -10└───────────────────────────────────┘ ``` |