Brailleboi - the best braille image plotting library written in C
Current list of features:
- Variable size image buffer
- X,Y plotting of dots
System requirements:
- Terminal emulator with support for Unicode characters and VT-100 escape sequences
Example code:
#include "src/brailleboi.h"
int main()
{
image_buffer buf;
brailleInit(200, 200, &buf);
for (int i=0;i<buf.width;i++) {
braillePlot(i, i, &buf);
}
brailleUpdateScreen(&buf);
brailleStop(&buf);
return 0;
}
