Click or drag to resize

PdfiumFPDFMatrix_Concat Method

Multiplies the matrices in the order specified in the bPrepended parameter.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFMatrix_Concat(
	FS_MATRIX dst,
	FS_MATRIX src,
	bool bPrepended = false
)

Parameters

dst  FS_MATRIX
The destination matrix
src  FS_MATRIX
The source matrix.
bPrepended  Boolean  (Optional)
Represents the order of the multiplication.
Remarks

if the specified order is Prepend (the prepend parameter is True), The Matrices are multiplied in a prepended order. Otherwise in an appended order.

  • Prepended order: [dst] = [src] x [dst]
  • Appended order: [dst] = [dst] x [src]

See Also