Exemplo n.º 1
0
 public static CGPoint BottomCenter(this CGRect rectangle)
 {
     return(new CGPoint(rectangle.CenterX(), rectangle.Bottom));
 }
Exemplo n.º 2
0
 public static CGPoint CenterCenter(this CGRect rectangle)
 {
     return(new CGPoint(rectangle.CenterX(), rectangle.CenterY()));
 }
Exemplo n.º 3
0
 public static CGPoint TopCenter(this CGRect rectangle)
 {
     return(new CGPoint(rectangle.CenterX(), rectangle.Top));
 }