CrossUI.DrawingTransformExtensions.Scale C# (CSharp) Method

Scale() public static method

public static Scale ( this _, double sx, double sy, Point center = null ) : void
_ this
sx double
sy double
center Point
return void
        public static void Scale(this IDrawingTransform _, double sx, double sy, Point? center = null)
        {
            _.Scale(sx, sy, center != null ? center.Value.X : (double?)null, center != null ? center.Value.Y : (double?)null);
        }