SKMatrix.PreConcat 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
PreConcat(SKMatrix) | |
PreConcat(SKMatrix, SKMatrix) |
Obsolete.
Pre-concatenates the matrix to the target matrix. |
PreConcat(SKMatrix, SKMatrix) |
Obsolete.
Pre-concatenates the matrix to the target matrix. |
PreConcat(SKMatrix)
PreConcat(SKMatrix, SKMatrix)
Caution
Use PreConcat(SKMatrix) instead.
Pre-concatenates the matrix to the target matrix.
public static void PreConcat (ref SkiaSharp.SKMatrix target, ref SkiaSharp.SKMatrix matrix);
[System.Obsolete("Use PreConcat(SKMatrix) instead.")]
public static void PreConcat (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 = target * matrix
Applies to
PreConcat(SKMatrix, SKMatrix)
Caution
Use PreConcat(SKMatrix) instead.
Pre-concatenates the matrix to the target matrix.
public static void PreConcat (ref SkiaSharp.SKMatrix target, SkiaSharp.SKMatrix matrix);
[System.Obsolete("Use PreConcat(SKMatrix) instead.")]
public static void PreConcat (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 = target * matrix