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

◆ operator*() [3/3]

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

Creates new matrix as product of this and other.

This operator overload creates a new matrix that is the result of multiplying this matrix by another. The resulting matrix represents the combined transformations of both matrices, without modifying the original.

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