 | FS_MATRIXConcat Method |
Multiplies this matrix by the matrix specified in the matrix parameter, and in the order specified in the prepended parameter.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Concat(
FS_MATRIX matrix,
bool prepended = false
)
Public Sub Concat (
matrix As FS_MATRIX,
Optional prepended As Boolean = false
)
public:
void Concat(
FS_MATRIX^ matrix,
bool prepended = false
)
member Concat :
matrix : FS_MATRIX *
?prepended : bool
(* Defaults:
let _prepended = defaultArg prepended false
*)
-> unit public void Concat(
FS_MATRIX matrix,
boolean prepended = false
)
function Concat(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