SKMatrix.RotateDegrees Method

Definition

Overloads

RotateDegrees(SKMatrix, Single)
Obsolete.

Rotates the specified matrix by the specified degrees.

RotateDegrees(SKMatrix, Single, Single, Single)
Obsolete.

Rotates the specified matrix by the specified degrees.

RotateDegrees(SKMatrix, Single)

Caution

Use CreateRotationDegrees(float) instead.

Rotates the specified matrix by the specified degrees.

public static void RotateDegrees (ref SkiaSharp.SKMatrix matrix, float degrees);
[System.Obsolete("Use CreateRotationDegrees(float) instead.")]
public static void RotateDegrees (ref SkiaSharp.SKMatrix matrix, float degrees);

Parameters

matrix
SKMatrix

The target matrix.

degrees
Single

The angle for the rotation, in degrees.

Attributes

Applies to

RotateDegrees(SKMatrix, Single, Single, Single)

Caution

Use CreateRotationDegrees(float, float, float) instead.

Rotates the specified matrix by the specified degrees.

public static void RotateDegrees (ref SkiaSharp.SKMatrix matrix, float degrees, float pivotx, float pivoty);
[System.Obsolete("Use CreateRotationDegrees(float, float, float) instead.")]
public static void RotateDegrees (ref SkiaSharp.SKMatrix matrix, float degrees, float pivotx, float pivoty);

Parameters

matrix
SKMatrix

The target matrix.

degrees
Single

The angle for the rotation, in degrees.

pivotx
Single

The x-coordinate for the rotation pivot.

pivoty
Single

The y-coordinate for the rotation pivot.

Attributes

Applies to