matrix + matrix, adds the values of two matrices component wise

Namespace: VVVV.Utils.VMath
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static Matrix4x4 operator +(
	Matrix4x4 A,
	Matrix4x4 B
)

Parameters

A
Type: VVVV.Utils.VMath..::..Matrix4x4

[Missing <param name="A"/> documentation for "M:VVVV.Utils.VMath.Matrix4x4.op_Addition(VVVV.Utils.VMath.Matrix4x4,VVVV.Utils.VMath.Matrix4x4)"]

B
Type: VVVV.Utils.VMath..::..Matrix4x4

[Missing <param name="B"/> documentation for "M:VVVV.Utils.VMath.Matrix4x4.op_Addition(VVVV.Utils.VMath.Matrix4x4,VVVV.Utils.VMath.Matrix4x4)"]

Return Value

New matrix with the pair wise sum of the components of A and B

See Also