| 59 | } |
| 60 | |
| 61 | void Animation_SystemShutdown::setLine(HyperImage& painter, int y, Point3d rgb) |
| 62 | { |
| 63 | painter.setPen(ColorRgb(rgb.x, rgb.y, rgb.z)); |
| 64 | painter.drawHorizontalLine(0, SYSTEMSHUTDOWN_WIDTH - 1, y); |
| 65 | } |
| 66 | |
| 67 | void Animation_SystemShutdown::setFill(HyperImage& painter, Point3d rgb) |
| 68 | { |
nothing calls this directly
no test coverage detected