v1.1.2: added inset support for notched iPhones in landscape

This commit is contained in:
Evan Debenham
2022-01-06 12:06:52 -05:00
parent 16f3774a1a
commit cc221bc089
10 changed files with 64 additions and 25 deletions
@@ -143,5 +143,9 @@ public class RectF {
public RectF shrink() {
return shrink( 1 );
}
public RectF scale( float d ){
return new RectF( left * d, top * d, right * d, bottom * d );
}
}