Matrix3x2.Addition(Matrix3x2, Matrix3x2) Operator

定義

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 オブジェクトの加算演算子の操作を定義します。

適用対象