Edit

Share via


MatrixExtensions.ScaleAt(Matrix, Double, Double, Double, Double) Method

Definition

Scales this Matrix by the specified amount about the specified point and returns the result.

public static Windows.UI.Xaml.Media.Matrix ScaleAt (this Windows.UI.Xaml.Media.Matrix matrix, double scaleX, double scaleY, double centerX, double centerY);
static member ScaleAt : Windows.UI.Xaml.Media.Matrix * double * double * double * double -> Windows.UI.Xaml.Media.Matrix
<Extension()>
Public Function ScaleAt (matrix As Matrix, scaleX As Double, scaleY As Double, centerX As Double, centerY As Double) As Matrix

Parameters

matrix
Matrix

Matrix to extend.

scaleX
Double

The value by which to scale this Matrix along the x-axis.

scaleY
Double

The value by which to scale this Matrix along the y-axis.

centerX
Double

The x-coordinate of the scale operation's center point.

centerY
Double

The y-coordinate of the scale operation's center point.

Returns

Scaled Matrix.

Applies to