Axiom.Overlays.Overlay.SetScale C# (CSharp) Метод

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

Sets the scaling factor of this overlay.
You can use this to set an scale factor to be used to zoom an overlay.
public SetScale ( float x, float y ) : void
x float Horizontal scale value, where 1.0 = normal, 0.5 = half size etc
y float Vertical scale value, where 1.0 = normal, 0.5 = half size etc
Результат void
		public void SetScale( float x, float y )
		{
			scaleX = x;
			scaleY = y;
			isTransformOutOfDate = true;
			isTransformUpdated = true;
		}