| 305 | } |
| 306 | |
| 307 | void OLEDDisplay::drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, |
| 308 | int16_t x2, int16_t y2) { |
| 309 | drawLine(x0, y0, x1, y1); |
| 310 | drawLine(x1, y1, x2, y2); |
| 311 | drawLine(x2, y2, x0, y0); |
| 312 | } |
| 313 | |
| 314 | void OLEDDisplay::fillTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, |
| 315 | int16_t x2, int16_t y2) { |
nothing calls this directly
no outgoing calls
no test coverage detected