Matrix3x2.Addition(Matrix3x2, Matrix3x2) 演算子

定義

1 つの行列の各要素に、2 番目の行列の対応する要素を加算します。

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

2 番目の行列。

戻り値

加算結果の値を内容とする行列。

注釈

メソッドは Addition 、オブジェクトの加算演算子の操作を Matrix3x2 定義します。

適用対象