IMathHelper::Matrix_Invert Method
From PDF XChange PDF SDK
(Automatic page editing by robot) |
|||
Line 3: | Line 3: | ||
{{#customTitle:IMathHelper::Matrix_Invert Method}} | {{#customTitle:IMathHelper::Matrix_Invert Method}} | ||
{{#parentPage:PXV:IMathHelper#Methods|Matrix_Invert|method}} | {{#parentPage:PXV:IMathHelper#Methods|Matrix_Invert|method}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
− | + | Inverts the input matrix. | |
== Syntax == | == Syntax == | ||
Line 14: | Line 13: | ||
== Parameters == | == Parameters == | ||
;pMatrix | ;pMatrix | ||
− | :[in] Pointer to [[PXV:PXC_Matrix|PXC_Matrix]]. | + | :[in] Pointer to [[PXV:PXC_Matrix|PXC_Matrix]] containing the input matrix. |
;pRes | ;pRes | ||
− | :[out, retval] Pointer to [[PXV:PXC_Matrix|PXC_Matrix]]. | + | :[out, retval] Pointer to [[PXV:PXC_Matrix|PXC_Matrix]] containing the inverted matrix. |
== Return Value == | == Return Value == | ||
Line 22: | Line 21: | ||
== See Also == | == See Also == | ||
+ | [https://en.wikipedia.org/wiki/Invertible_matrix] | ||
+ | [http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf#G9.3793348] | ||
[[PXV:IMathHelper|IMathHelper]] | [[PXV:IMathHelper|IMathHelper]] |
Revision as of 03:44, 5 January 2017
Inverts the input matrix.
Syntax
HRESULT Matrix_Invert([in] PXC_Matrix* pMatrix, [out, retval] PXC_Matrix* pRes);
Parameters
- pMatrix
- [in] Pointer to PXC_Matrix containing the input matrix.
- pRes
- [out, retval] Pointer to PXC_Matrix containing the inverted matrix.
Return Value
Returns S_OK if operation was successful or error code in other cases.