Matrix4x4.Multiply Operator
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
行列積を実行します。
オーバーロード
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 定義します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET