Matrix3x2.Multiply 演算子

定義

行列積を実行します。

オーバーロード

Multiply(Matrix3x2, Matrix3x2)

2 つの行列の乗算結果となる積行列を返します。

Multiply(Matrix3x2, Single)

指定した行列のすべての要素をスカラー因子倍した行列を返します。

Multiply(Matrix3x2, Matrix3x2)

ソース:
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

指定した行列のすべての要素をスカラー因子倍した行列を返します。

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 定義します。

適用対象