Axiom.Overlays.Elements.Panel.GetUV C# (CSharp) Method

GetUV() public method

public GetUV ( Real &u1, Real &v1, Real &u2, Real &v2 ) : void
u1 Real
v1 Real
u2 Real
v2 Real
return void
		public void GetUV( out Real u1, out Real v1, out Real u2, out Real v2 )
		{
			u1 = topLeft.x;
			v1 = topLeft.y;
			u2 = bottomRight.x;
			v2 = bottomRight.y;
		}