Esempio n. 1
0
 /// <summary>Translate a Rect in screen coordinates into the app window's coordinates.
 ///     </summary>
 /// <remarks>Translate a Rect in screen coordinates into the app window's coordinates.
 ///     </remarks>
 public virtual void translateRectInScreenToAppWindow(android.graphics.Rect rect)
 {
     rect.scale(this.applicationInvertedScale);
 }
Esempio n. 2
0
 /// <summary>Translate a Rect in application's window to screen.</summary>
 /// <remarks>Translate a Rect in application's window to screen.</remarks>
 public virtual void translateRectInAppWindowToScreen(android.graphics.Rect rect)
 {
     rect.scale(this.applicationScale);
 }