Difference between revisions of "INVERT MATRIX"
From Macros Wiki
Line 1: | Line 1: | ||
+ | [[:Category:Matrices|{{Up}}]] | ||
+ | |||
{{Command|syntax=INVERT_MATRIX <matrix array> | {{Command|syntax=INVERT_MATRIX <matrix array> | ||
|description=:Set an array variable to the transformation matrix required to invert the current transformation stored in that array. | |description=:Set an array variable to the transformation matrix required to invert the current transformation stored in that array. |
Revision as of 10:33, 2 August 2010
Command
- INVERT_MATRIX <matrix array>
- Set an array variable to the transformation matrix required to invert the current transformation stored in that array.
Parameters
- <matrix array>
- A transformation matrix contains 12 values. These are stored in an array variable that must be defined to hold at least 12 values. If the array variable is defined with a size of more than 12, the first 12 values are used for the transformation matrix.
Example
- GLOBAL MAT1(12)
- GET_SCALE_MATRIX MAT1, 0.5
- INVERT_MATRIX MAT1