Click or drag to resize

FS_MATRIXConcatInverse Method

Inverts the matrix specified in the matrix parameter and than multiplies this matrix by the inverted matrix, and in the order specified in the prepended parameter.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntax
public void ConcatInverse(
	FS_MATRIX matrix,
	bool prepended = false
)

Parameters

matrix  FS_MATRIX
The FS_MATRIX by which this matrix is to be multiplied.
prepended  Boolean  (Optional)
Represents the order of the multiplication.
Remarks

if the specified order is Prepend (the prepend parameter is True), this Matrix is multiplied by the specified matrix in a prepended order. Otherwise, this Matrix is multiplied by the specified matrix in an appended order.

  • Prepended order: [SpecifiedMatrix] x [ThisMatrix]
  • Appended order: [ThisMatrix] x [SpecifiedMatrix]

See Also