Modifies current matrix by adding translation.
This method updates the current matrix by adding a translation vector to the existing translation component. This is particularly useful for continuous movement and animation, allowing for incremental updates to the position.
- Parameters
-
translation | The translation vector to add to the current transformation. |
- Returns
- Reference to this matrix, allowing for method chaining.
constexpr Matrix43()
Default constructor initializing to a zero matrix.
Definition mat43.hpp:85
constexpr Matrix43 & Translate(const Vector3D &translation)
Modifies current matrix by adding translation.
Definition mat43.hpp:154
A high-performance three-dimensional vector implementation optimized for Saturn hardware.
Definition vector3d.hpp:51