SKMatrix.Concat 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
Concat(SKMatrix, SKMatrix) | |
Concat(SKMatrix, SKMatrix, SKMatrix) |
Concatenates the specified matrices into the resulting target matrix. |
Concat(SKMatrix, SKMatrix, SKMatrix) |
Concatenates the specified matrices into the resulting target matrix. |
Concat(SKMatrix, SKMatrix)
Concat(SKMatrix, SKMatrix, SKMatrix)
Concatenates the specified matrices into the resulting target matrix.
public static void Concat (ref SkiaSharp.SKMatrix target, SkiaSharp.SKMatrix first, SkiaSharp.SKMatrix second);
Parameters
- target
- SKMatrix
The result matrix value.
- first
- SKMatrix
The first matrix to concatenate.
- second
- SKMatrix
The second matrix to concatenate.
Remarks
Either source matrices can also be the target matrix.
Applies to
Concat(SKMatrix, SKMatrix, SKMatrix)
Concatenates the specified matrices into the resulting target matrix.
public static void Concat (ref SkiaSharp.SKMatrix target, ref SkiaSharp.SKMatrix first, ref SkiaSharp.SKMatrix second);
Parameters
- target
- SKMatrix
The result matrix value.
- first
- SKMatrix
The first matrix to concatenate.
- second
- SKMatrix
The second matrix to concatenate.
Remarks
Either source matrices can also be the target matrix.