| 98 | } |
| 99 | |
| 100 | void HyperImage::fillRect(int ax, int ay, int bx, int by, const ColorRgb& color) |
| 101 | { |
| 102 | _surface.fastBox(ax, ay, bx, by, color.red, color.green, color.blue); |
| 103 | } |
| 104 | |
| 105 | void HyperImage::radialFill(int center_x, int center_y, double diag, const std::vector<uint8_t>& points) |
| 106 | { |
no test coverage detected