SKMatrix.MakeScale Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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