bool get(int x, int y) { if (x < 0 || x >= width || y < 0 || y >= height) { return false; } return _data[y * width + x] != 0; }