Click or drag to resize
Accord.NET (logo)

Matrix4x4Addition Operator

Adds corresponding components of two matrices.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Matrix4x4 operator +(
	Matrix4x4 matrix1,
	Matrix4x4 matrix2
)
Request Example View Source

Parameters

matrix1
Type: Accord.MathMatrix4x4
The matrix to add to.
matrix2
Type: Accord.MathMatrix4x4
The matrix to add to the first matrix.

Return Value

Type: Matrix4x4
Returns a matrix which components are equal to sum of corresponding components of the two specified matrices.
See Also