(float l, float t, float r, float b, float radius)
| 15 | } |
| 16 | |
| 17 | public static RRect makeLTRB(float l, float t, float r, float b, float radius) { |
| 18 | return new RRect(l, t, r, b, new float[] { radius } ); |
| 19 | } |
| 20 | |
| 21 | public static RRect makeLTRB(float l, float t, float r, float b, float xRad, float yRad) { |
| 22 | return new RRect(l, t, r, b, new float[] { xRad, yRad } ); |