Plot a single braille dot.
void point(int x, int y, {UvStyle style = const UvStyle()}) { if (x < 0 || y < 0 || x >= dotWidth || y >= dotHeight) return; _dots[y][x] = style; }