SaturnRingLibrary 0.9.1
SGL wrapper
 
Loading...
Searching...
No Matches

◆ operator*() [2/3]

Matrix43 SRL::Math::Types::Matrix43::operator* ( const Matrix33 & other) const
inlineconstexpr

Creates new matrix as product of this and another 3x3 matrix.

This operator overload creates a new matrix that is the result of multiplying this matrix by a 3x3 matrix. The resulting matrix modifies only the rotation part of this matrix, while the translation component remains unchanged.

Parameters
otherThe 3x3 matrix to multiply with.
Returns
A new Matrix43 object that is the product of this matrix and the 3x3 matrix.
Matrix43 result = matrix * rotationMatrix; // Creates a new matrix as the product of matrix and rotationMatrix
constexpr Matrix43()
Default constructor initializing to a zero matrix.
Definition mat43.hpp:85