MCPcopy Create free account
hub / github.com/Card-Forge/forge / drawfillBorder

Method drawfillBorder

forge-gui-mobile/src/forge/Graphics.java:451–454  ·  view source on GitHub ↗
(float thickness, Color color, float x, float y, float w, float h, float cornerRadius)

Source from the content-addressed store, hash-verified

449 }
450
451 public void drawfillBorder(float thickness, Color color, float x, float y, float w, float h, float cornerRadius) {
452 drawRoundRect(thickness, color, x, y, w, h, cornerRadius);
453 fillRoundRect(color, x, y, w, h, cornerRadius);
454 }
455
456 public void drawRoundRect(float thickness, FSkinColor skinColor, float x, float y, float w, float h, float cornerRadius) {
457 drawRoundRect(thickness, skinColor.getColor(), x, y, w, h, cornerRadius);

Callers

nothing calls this directly

Calls 2

drawRoundRectMethod · 0.95
fillRoundRectMethod · 0.95

Tested by

no test coverage detected