(int left, int top, int right, int bottom, int color)
| 436 | } |
| 437 | |
| 438 | public static void drawRectOutline(int left, int top, int right, int bottom, int color) { |
| 439 | drawRect(left - 1, top - 1, right + 1, top, color); |
| 440 | drawRect(right, top, right + 1, bottom, color); |
| 441 | drawRect(left - 1, bottom, right + 1, bottom + 1, color); |
| 442 | drawRect(left - 1, top, left, bottom, color); |
| 443 | } |
| 444 | |
| 445 | public static void drawRectInline(int left, int top, int right, int bottom, int color) { |
| 446 | drawRect(left, top, right, top + 1, color); |
no test coverage detected