diff --git a/USAGE.md b/USAGE.md index b38f702ca..992ca249e 100644 --- a/USAGE.md +++ b/USAGE.md @@ -3546,7 +3546,8 @@ typedef enum { NCBLIT_1x1, // space, compatible with ASCII NCBLIT_2x1, // halves + 1x1 (space) ▄▀ NCBLIT_2x2, // quadrants + 2x1 ▗▐ ▖▀▟▌▙ - NCBLIT_3x2, // sextants (*NOT* 2x2) 🬀🬁🬂🬃🬄🬅🬆🬇🬈🬉🬊🬋🬌🬍🬎🬏🬐🬑🬒🬓🬔🬕🬖🬗🬘🬙🬚🬛🬜🬝🬞 + NCBLIT_3x2, // sextants + 2x1 🬀🬁🬂🬃🬄🬅🬆🬇🬈🬉🬊🬋🬌🬍🬎🬏🬐🬑🬒🬓🬔🬕🬖🬗🬘🬙🬚🬛🬜🬝🬞 + NCBLIT_4x2, // octants + 2x2 there are a great many octants NCBLIT_BRAILLE, // 4 rows, 2 cols (braille) ⡀⡄⡆⡇⢀⣀⣄⣆⣇⢠⣠⣤⣦⣧⢰⣰⣴⣶⣷⢸⣸⣼⣾⣿ NCBLIT_PIXEL, // pixel graphics (also work in ASCII) NCBLIT_4x1, // four vertical levels █▆▄▂ (plots only) diff --git a/include/notcurses/notcurses.h b/include/notcurses/notcurses.h index 99998701c..dd1a0a63d 100644 --- a/include/notcurses/notcurses.h +++ b/include/notcurses/notcurses.h @@ -67,8 +67,8 @@ typedef enum { NCBLIT_1x1, // space, compatible with ASCII NCBLIT_2x1, // halves + 1x1 (space) ▄▀ NCBLIT_2x2, // quadrants + 2x1 ▗▐ ▖▀▟▌▙ - NCBLIT_3x2, // sextants (*NOT* 2x2) 🬀🬁🬂🬃🬄🬅🬆🬇🬈🬉🬊🬋🬌🬍🬎🬏🬐🬑🬒🬓🬔🬕🬖🬗🬘🬙🬚🬛🬜🬝🬞 - NCBLIT_4x2, // octants + NCBLIT_3x2, // sextants + 2x1 🬀🬁🬂🬃🬄🬅🬆🬇🬈🬉🬊🬋🬌🬍🬎🬏🬐🬑🬒🬓🬔🬕🬖🬗🬘🬙🬚🬛🬜🬝🬞 + NCBLIT_4x2, // octants + 2x2 there are a great many octants NCBLIT_BRAILLE, // 4 rows, 2 cols (braille) ⡀⡄⡆⡇⢀⣀⣄⣆⣇⢠⣠⣤⣦⣧⢰⣰⣴⣶⣷⢸⣸⣼⣾⣿ NCBLIT_PIXEL, // pixel graphics // these blitters are suitable only for plots, not general media