Creates matrix from individual row vectors.
This constructor initializes a 4x3 matrix using individual row vectors. Each row vector defines a direction in world space, allowing for flexible matrix creation based on specific row definitions.
- Parameters
-
row0 | The right vector, representing the first row of the matrix. |
row1 | The up vector, representing the second row of the matrix. |
row2 | The forward vector, representing the third row of the matrix. |
row3 | The translation vector, representing the position of the transformation in world space. |
- Note
- This constructor is useful when the individual row vectors are known and need to be combined into a matrix.