From 4202c70f3d642b17a1a40cee170009b5b4eed2d3 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 3 Sep 2015 00:25:06 +0200 Subject: [PATCH] redesign box drawing to fit 137 code points in less space MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The 5 7x7 box figures can be condensed into 3 with similar aesthetics, more concisely targeted to: - simple single and double lines (IBM CP850 superset), - single/double transitions and round corners (previously 3rd and 4th boxes, includes all IBM CP437 lines), - heavy lines and diagonals (5th box with 1st innards). Introduce another such drawing featuring all dashed lines (including previously missing quadruple dashed horizontal lines) and block quadrants (still missing ▚ and ▞). Keep some smaller figures for heavy line combinations, introducing a single #-shape to cover half line endings as well as 4 additional heavy transitions, though various other such code points are still missing. --- unicode.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/unicode.txt b/unicode.txt index 9498885..2a070c0 100644 --- a/unicode.txt +++ b/unicode.txt @@ -309,13 +309,13 @@ Chinese: 閏餘成歲律召調陽 雲騰致雨露結為霜 金生麗水玉出崑崗 劍號巨闕珠稱夜光 果珍李柰菜重芥薑 海鹹河淡鱗潛羽翔 -Box drawing alignment tests: █ - ▉ - ╔══╦══╗ ┌──┬──┐ ╭──┬──╮ ╭──┬──╮ ┏━━┳━━┓ ┎┒┏┑ ╷ ╻ ┏┯┓ ┌┰┐ ▊ ╱╲╱╲╳╳╳ - ║┌─╨─┐║ │╔═╧═╗│ │╒═╪═╕│ │╓─╁─╖│ ┃┌─╂─┐┃ ┗╃╄┙ ╶┼╴╺╋╸┠┼┨ ┝╋┥ ▋ ╲╱╲╱╳╳╳ - ║│╲ ╱│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╿ │┃ ┍╅╆┓ ╵ ╹ ┗┷┛ └┸┘ ▌ ╱╲╱╲╳╳╳ - ╠╡ ╳ ╞╣ ├╢ ╟┤ ├┼─┼─┼┤ ├╫─╂─╫┤ ┣┿╾┼╼┿┫ ┕┛┖┚ ┌┄┄┐ ╎ ┏┅┅┓ ┋ ▍ ╲╱╲╱╳╳╳ - ║│╱ ╲│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╽ │┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▎ - ║└─╥─┘║ │╚═╤═╝│ │╘═╪═╛│ │╙─╀─╜│ ┃└─╂─┘┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▏ - ╚══╩══╝ └──┴──┘ ╰──┴──╯ ╰──┴──╯ ┗━━┻━━┛ ▗▄▖▛▀▜ └╌╌┘ ╎ ┗╍╍┛ ┋ ▁▂▃▄▅▆▇█ - ▝▀▘▙▄▟ +Box drawing alignment tests: + + ┌┬───╥┐ ╒══╤══╕ ┏━━┳━━┓ ┎┒┏┑ ╻╷ ┌╌╌┄┄┈┒ ▏ ▁▂▃▄▅▆▇█▓▓▒▒░░ + ├┼───╫┤ │╓─┴─╖│ ┃┌─╂─┐┃ ┗╃╄┙╺╇╈╸ ╎▛▀▀▀▜┋ ▎ + ││╔╦╗║│ │║╭─╮║│ ┃│╲╿╱│┃ ┍╅╆┓╶╁╀╴ ╎▌▗▄▖▐┇ ▍ + ││╠╬╣║│ ├╢│ │╟┤ ┣┿╾╳╼┿┫ ┕┛┖┚ ╹╵ ┆▌▐ ▌▐┇ ▌ + ││╚╩╝║│ │║╰─╯║│ ┃│╱╽╲│┃ ┏┯┓ ┌┰┐ ┆▌▝▀▘▐╏ ▋ + ╞╪═══╬╡ │╙─┬─╜│ ┃└─╂─┘┃ ┠┼┨ ┝╋┥ ┊▙▄▄▄▟╏ ▊ + └┴───╨┘ ╘══╧══╛ ┗━━┻━━┛ ┗┷┛ └┸┘ ┕┉┅┅╍╍┛ ▉ + █ -- 2.30.0