Axiom.Math.Matrix4.Add C# (CSharp) 메소드

Add() 공개 정적인 메소드

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