Matrix3x2.Addition(Matrix3x2, Matrix3x2) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将一个矩阵中的每个元素与第二个矩阵中的对应元素相加。
public:
static System::Numerics::Matrix3x2 operator +(System::Numerics::Matrix3x2 value1, System::Numerics::Matrix3x2 value2);
public static System.Numerics.Matrix3x2 operator + (System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);
static member ( + ) : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 -> System.Numerics.Matrix3x2
Public Shared Operator + (value1 As Matrix3x2, value2 As Matrix3x2) As Matrix3x2
参数
- value1
- Matrix3x2
第一个矩阵。
- value2
- Matrix3x2
第二个矩阵。
返回
包含总和值的矩阵。
注解
方法 Addition 定义 对象的加法运算符 Matrix3x2 的操作。