TRANSLATE MATRIX: Difference between revisions
From Macros Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
:TRANSLATE_MATRIX Matrix1, 3, 1, -2 | :TRANSLATE_MATRIX Matrix1, 3, 1, -2 | ||
<br> | <br> | ||
This will get a matrix to scale to 1/4 size, then translate by 3 in X, 1 in Y and -2 in Z. | :This will get a matrix to scale to 1/4 size, then translate by 3 in X, 1 in Y and -2 in Z. | ||
[[Category:Matrices]] | [[Category:Matrices]] |
Latest revision as of 18:26, 12 January 2011
Command
- TRANSLATE_MATRIX <matrix array>, <dx>, <dy>, <dz>,
- Modify a matrix by applying a translation.
Parameters
- <matrix array>
- Name of Matrix variable
- <dx>
- The distance in the X axis direction.
- <dy>
- The distance in the Y axis direction.
- <dz>
- The distance in the Z axis direction.
Example
- GLOBAL Matrix1(12)
- GET_SCALE_MATRIX Matrix1, 0.25
- TRANSLATE_MATRIX Matrix1, 3, 1, -2
- This will get a matrix to scale to 1/4 size, then translate by 3 in X, 1 in Y and -2 in Z.