mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 09:09:03 -04:00
poc/geom: three new stupid unicode tricks
This commit is contained in:
parent
4fb8500631
commit
b6438e415d
BIN
data/aidsrobots.jpeg
Normal file
BIN
data/aidsrobots.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 408 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
@ -72,6 +72,18 @@ int main(void){
|
||||
if(ncplane_putwc_yx(n, 7, i, w) <= 0){
|
||||
goto err;
|
||||
}
|
||||
w = L'⌌' + flipmode % 4;
|
||||
if(ncplane_putwc_yx(n, 8, i, w) <= 0){
|
||||
goto err;
|
||||
}
|
||||
w = L'░' + flipmode % 3;
|
||||
if(ncplane_putwc_yx(n, 9, i, w) <= 0){
|
||||
goto err;
|
||||
}
|
||||
w = L'⯀' + flipmode % 5;
|
||||
if(ncplane_putwc_yx(n, 10, i, w) <= 0){
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
if(notcurses_render(nc)){
|
||||
notcurses_stop(nc);
|
||||
|
Loading…
x
Reference in New Issue
Block a user