SKMatrix.MakeRotationDegrees 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
MakeRotationDegrees(Single) |
Obsolete.
Creates a matrix that represents a specific rotation in degrees. |
MakeRotationDegrees(Single, Single, Single) |
Obsolete.
Creates a matrix that represents a specific rotation in degrees, around a pivot point. |
MakeRotationDegrees(Single)
Caution
Use CreateRotationDegrees(float) instead.
Creates a matrix that represents a specific rotation in degrees.
public static SkiaSharp.SKMatrix MakeRotationDegrees (float degrees);
[System.Obsolete("Use CreateRotationDegrees(float) instead.")]
public static SkiaSharp.SKMatrix MakeRotationDegrees (float degrees);
Parameters
- degrees
- Single
The angle for the rotation, in degrees.
Returns
Returns the new matrix.
- Attributes
Applies to
MakeRotationDegrees(Single, Single, Single)
Caution
Use CreateRotationDegrees(float, float, float) instead.
Creates a matrix that represents a specific rotation in degrees, around a pivot point.
public static SkiaSharp.SKMatrix MakeRotationDegrees (float degrees, float pivotx, float pivoty);
[System.Obsolete("Use CreateRotationDegrees(float, float, float) instead.")]
public static SkiaSharp.SKMatrix MakeRotationDegrees (float degrees, float pivotx, float pivoty);
Parameters
- 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.
Returns
Returns the new matrix.
- Attributes