idTech4.UI.idDeviceContext.AdjustCoordinates C# (CSharp) Метод

AdjustCoordinates() приватный Метод

private AdjustCoordinates ( float &x, float &y, float &width, float &height ) : void
x float
y float
width float
height float
Результат void
		private void AdjustCoordinates(ref float x, ref float y, ref float width, ref float height)
		{
			x *= _scaleX;
			y *= _scaleY;
			width *= _scaleX;
			height *= _scaleY;
		}