MCPcopy Create free account
hub / github.com/5zig/The-5zig-Mod / drawRectInline

Method drawRectInline

Mod Utils/src/eu/the5zig/mod/gui/Gui.java:445–450  ·  view source on GitHub ↗
(int left, int top, int right, int bottom, int color)

Source from the content-addressed store, hash-verified

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);
447 drawRect(right - 1, top, right, bottom, color);
448 drawRect(left, bottom - 1, right, bottom, color);
449 drawRect(left, top, left + 1, bottom, color);
450 }
451
452 public static void drawScaledCenteredString(String string, int x, int y, float scale) {
453 GLUtil.pushMatrix();

Callers 2

drawRectInlineMethod · 0.95
renderTabEntriesMethod · 0.95

Calls 1

drawRectMethod · 0.95

Tested by

no test coverage detected