Matrix4x4.Addition(Matrix4x4, Matrix4x4) Operator

定義

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

適用対象