Matrix4x4.Addition(Matrix4x4, Matrix4x4) 操作员

定义

在一个矩阵中添加每个元素,其对应元素位于第二个矩阵中。

public:
 static System::Numerics::Matrix4x4 operator +(System::Numerics::Matrix4x4 value1, System::Numerics::Matrix4x4 value2);
public static System.Numerics.Matrix4x4 operator +(System.Numerics.Matrix4x4 value1, System.Numerics.Matrix4x4 value2);
static member ( + ) : System.Numerics.Matrix4x4 * System.Numerics.Matrix4x4 -> System.Numerics.Matrix4x4
Public Shared Operator + (value1 As Matrix4x4, value2 As Matrix4x4) As Matrix4x4

参数

value1
Matrix4x4

第一个矩阵。

value2
Matrix4x4

第二个矩阵。

返回

包含求和值的矩阵。

注解

该方法 Addition 定义对象的 Matrix4x4 加法运算符的操作。

适用于