idTech4.UI.idDeviceContext.ClipCoordinates C# (CSharp) Method

ClipCoordinates() private method

private ClipCoordinates ( float &x, float &y, float &width, float &height ) : bool
x float
y float
width float
height float
return bool
		private bool ClipCoordinates(ref float x, ref float y, ref float width, ref float height)
		{
			float s = 0, t = 0, s2 = 0, t2 = 0;

			return ClipCoordinates(ref x, ref y, ref width, ref height, ref s, ref t, ref s2, ref t2);
		}

Same methods

idDeviceContext::ClipCoordinates ( float &x, float &y, float &width, float &height, float &s, float &t, float &s2, float &t2 ) : bool