FSO.Client.UI.Framework.UIElement.LocalRect C# (CSharp) Метод

LocalRect() публичный Метод

Converts a rectangle relative to this UIElement into a rectangle relative to the screen.
public LocalRect ( float x, float y, float w, float h ) : Rectangle
x float
y float
w float
h float
Результат Microsoft.Xna.Framework.Rectangle
        public Rectangle LocalRect(float x, float y, float w, float h)
        {
            return LocalRect(x, y, w, h, _Mtx);
        }

Same methods

UIElement::LocalRect ( float x, float y, float w, float h, float mtx ) : Rectangle