poc/geom: three new stupid unicode tricks

This commit is contained in:
nick black 2020-02-24 22:01:16 -05:00
parent 4fb8500631
commit b6438e415d
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
3 changed files with 12 additions and 0 deletions

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

View File

@ -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);