Matrix4x4.Addition(Matrix4x4, Matrix4x4) 演算子

定義

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

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

2 番目の行列。

戻り値

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

注釈

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

適用対象