blob: 0ca1b03d9ab6abaead9e3fd7ef905e235b0afce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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;
}
```
|