plus

operator fun plus(other: Matrix3): Matrix3

Overloads the + operator to perform element-wise addition of this matrix with another Matrix3.

Each component of the resulting matrix is the sum of the corresponding components of this matrix and the other matrix.

Return

A new Matrix3 representing the sum of this matrix and other.

Parameters

other

The Matrix3 to add to this matrix.