SKMatrix.RotateDegrees 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
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