Matrix3x2.Multiply Operator

定義

行列に対して乗算演算を実行します。

オーバーロード

名前 説明
Multiply(Matrix3x2, Matrix3x2)

2 つの行列を乗算した結果の行列を返します。

Multiply(Matrix3x2, Single)

指定した行列のすべての要素をスカラー係数でスケーリングした結果の行列を返します。

Multiply(Matrix3x2, Matrix3x2)

ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs

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 番目の行列。

返品

製品マトリックス。

注釈

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

適用対象

Multiply(Matrix3x2, Single)

ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs

指定した行列のすべての要素をスカラー係数でスケーリングした結果の行列を返します。

public:
 static System::Numerics::Matrix3x2 operator *(System::Numerics::Matrix3x2 value1, float value2);
public static System.Numerics.Matrix3x2 operator *(System.Numerics.Matrix3x2 value1, float value2);
static member ( * ) : System.Numerics.Matrix3x2 * single -> System.Numerics.Matrix3x2
Public Shared Operator * (value1 As Matrix3x2, value2 As Single) As Matrix3x2

パラメーター

value1
Matrix3x2

スケーリングするマトリックス。

value2
Single

使用するスケーリング値。

返品

スケーリングされたマトリックス。

注釈

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

適用対象