(float l, float t, float w, float h, float radius)
| 43 | } |
| 44 | |
| 45 | public static RRect makeXYWH(float l, float t, float w, float h, float radius) { |
| 46 | return new RRect(l, t, l + w, t + h, new float[] { radius } ); |
| 47 | } |
| 48 | |
| 49 | public static RRect makeXYWH(float l, float t, float w, float h, float xRad, float yRad) { |
| 50 | return new RRect(l, t, l + w, t + h, new float[] { xRad, yRad } ); |
no outgoing calls
no test coverage detected