Matrix4x4.Multiply 演算子

定義

行列積を実行します。

オーバーロード

Multiply(Matrix4x4, Matrix4x4)

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

Multiply(Matrix4x4, Single)

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

Multiply(Matrix4x4, Matrix4x4)

ソース:
Matrix4x4.cs
ソース:
Matrix4x4.cs
ソース:
Matrix4x4.cs

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

戻り値

積行列。

注釈

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

適用対象

Multiply(Matrix4x4, Single)

ソース:
Matrix4x4.cs
ソース:
Matrix4x4.cs
ソース:
Matrix4x4.cs

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

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

パラメーター

value1
Matrix4x4

スカラー倍演算の対象となる行列。

value2
Single

使用する倍率値。

戻り値

スケール調節された行列。

注釈

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

適用対象