SKMatrix44.Implicit Operator
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
| Name | Description |
|---|---|
| Implicit(SKMatrix to SKMatrix44) |
Converts an SKMatrix to an SKMatrix44. |
| Implicit(SKMatrix44 to Matrix4x4) |
Converts an SKMatrix44 to a Matrix4x4. |
| Implicit(Matrix4x4 to SKMatrix44) |
Converts a Matrix4x4 to an SKMatrix44. |
Implicit(SKMatrix to SKMatrix44)
Converts an SKMatrix to an SKMatrix44.
public static implicit operator SkiaSharp.SKMatrix44(SkiaSharp.SKMatrix matrix);
Parameters
Returns
Returns the converted matrix.
Applies to
Implicit(SKMatrix44 to Matrix4x4)
Converts an SKMatrix44 to a Matrix4x4.
public static implicit operator System.Numerics.Matrix4x4(SkiaSharp.SKMatrix44 matrix);
Parameters
- matrix
- SKMatrix44
The SKMatrix44 to convert.
Returns
Returns the converted matrix.
Applies to
Implicit(Matrix4x4 to SKMatrix44)
Converts a Matrix4x4 to an SKMatrix44.
public static implicit operator SkiaSharp.SKMatrix44(System.Numerics.Matrix4x4 matrix);
Parameters
Returns
Returns the converted matrix.