SKMatrix.Concat Method

Definition

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)

public static SkiaSharp.SKMatrix Concat (SkiaSharp.SKMatrix first, SkiaSharp.SKMatrix second);

Parameters

first
SKMatrix
second
SKMatrix

Returns

Applies to

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.

Applies to