Axiom.RenderSystems.DirectX9.D3DHelper.ToRectangle C# (CSharp) Метод

ToRectangle() публичный статический Метод

public static ToRectangle ( Rectangle rect ) : System.Drawing.Axiom.Core.Rectangle
rect Axiom.Core.Rectangle
Результат System.Drawing.Axiom.Core.Rectangle
		public static System.Drawing.Rectangle ToRectangle( Rectangle rect )
		{
			return new System.Drawing.Rectangle( new System.Drawing.Point( (int)rect.Left, (int)rect.Top ),
												 new System.Drawing.Size( (int)rect.Width, (int)rect.Height ) );
		}