SKMatrix.MakeScale Method

Definition

Overloads

MakeScale(Single, Single)
Obsolete.

Creates a scaling matrix.

MakeScale(Single, Single, Single, Single)
Obsolete.

Creates a scaling matrix, around a pivot point.

MakeScale(Single, Single)

Caution

Use CreateScale(float, float) instead.

Creates a scaling matrix.

public static SkiaSharp.SKMatrix MakeScale (float sx, float sy);
[System.Obsolete("Use CreateScale(float, float) instead.")]
public static SkiaSharp.SKMatrix MakeScale (float sx, float sy);

Parameters

sx
Single

The scaling in the x-direction.

sy
Single

The scaling in the y-direction.

Returns

Returns the new matrix.

Attributes

Applies to

MakeScale(Single, Single, Single, Single)

Caution

Use CreateScale(float, float, float, float) instead.

Creates a scaling matrix, around a pivot point.

public static SkiaSharp.SKMatrix MakeScale (float sx, float sy, float pivotX, float pivotY);
[System.Obsolete("Use CreateScale(float, float, float, float) instead.")]
public static SkiaSharp.SKMatrix MakeScale (float sx, float sy, float pivotX, float pivotY);

Parameters

sx
Single

The scaling in the x-direction.

sy
Single

The scaling in the y-direction.

pivotX
Single

The x-coordinate for the scaling pivot.

pivotY
Single

The y-coordinate for the scaling pivot.

Returns

Returns the new matrix.

Attributes

Applies to