SKMatrix.PostConcat 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
PostConcat(SKMatrix, SKMatrix) |
Obsolete.
Post-concatenates the matrix to the target matrix. |
PostConcat(SKMatrix, SKMatrix) |
Obsolete.
Post-concatenates the matrix to the target matrix. |
PostConcat(SKMatrix) |
PostConcat(SKMatrix, SKMatrix)
Caution
Use PostConcat(SKMatrix) instead.
Post-concatenates the matrix to the target matrix.
public static void PostConcat (ref SkiaSharp.SKMatrix target, SkiaSharp.SKMatrix matrix);
[System.Obsolete("Use PostConcat(SKMatrix) instead.")]
public static void PostConcat (ref SkiaSharp.SKMatrix target, SkiaSharp.SKMatrix matrix);
Parameters
- target
- SKMatrix
The target matrix.
- matrix
- SKMatrix
The matrix to be post-concatenated.
- Attributes
Remarks
This represents: result = matrix * target
Applies to
PostConcat(SKMatrix, SKMatrix)
Caution
Use PostConcat(SKMatrix) instead.
Post-concatenates the matrix to the target matrix.
public static void PostConcat (ref SkiaSharp.SKMatrix target, ref SkiaSharp.SKMatrix matrix);
[System.Obsolete("Use PostConcat(SKMatrix) instead.")]
public static void PostConcat (ref SkiaSharp.SKMatrix target, ref SkiaSharp.SKMatrix matrix);
Parameters
- target
- SKMatrix
The target matrix.
- matrix
- SKMatrix
The matrix to be post-concatenated.
- Attributes
Remarks
This represents: result = matrix * target