Axiom.Math.Matrix4.Add C# (CSharp) Method

Add() public static method

Used to add two matrices together.
public static Add ( Matrix4 left, Matrix4 right ) : Matrix4
left Matrix4
right Matrix4
return Matrix4
		public static Matrix4 Add( Matrix4 left, Matrix4 right )
		{
			return left + right;
		}