 | 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.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void ConcatInverse(
FS_MATRIX matrix,
bool prepended = false
)
Public Sub ConcatInverse (
matrix As FS_MATRIX,
Optional prepended As Boolean = false
)
public:
void ConcatInverse(
FS_MATRIX^ matrix,
bool prepended = false
)
member ConcatInverse :
matrix : FS_MATRIX *
?prepended : bool
(* Defaults:
let _prepended = defaultArg prepended false
*)
-> unit public void ConcatInverse(
FS_MATRIX matrix,
boolean prepended = false
)
function ConcatInverse(matrix, prepended);
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