| 560 | } |
| 561 | |
| 562 | public void drawRectLines(float thickness, Color color, float x, float y, float w, float h) { |
| 563 | drawLine(thickness, color, x, y, x + w, y); |
| 564 | drawLine(thickness, color, x + thickness / 2f, y + thickness / 2f, x + thickness / 2f, y + h - thickness / 2f); |
| 565 | drawLine(thickness, color, x, y + h, x + w, y + h); |
| 566 | drawLine(thickness, color, x + w - thickness / 2f, y + thickness / 2f, x + w - thickness / 2f, y + h - thickness / 2f); |
| 567 | } |
| 568 | |
| 569 | public void fillRect(FSkinColor skinColor, float x, float y, float w, float h) { |
| 570 | fillRect(skinColor.getColor(), x, y, w, h); |