Matrix4x4.Lerp(Matrix4x4, Matrix4x4, Single) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
1 つの行列から 2 番目の行列までの線形補間を、2 番目の行列の重み付けを指定する値に基づいて実行します。
public:
static System::Numerics::Matrix4x4 Lerp(System::Numerics::Matrix4x4 matrix1, System::Numerics::Matrix4x4 matrix2, float amount);
public static System.Numerics.Matrix4x4 Lerp (System.Numerics.Matrix4x4 matrix1, System.Numerics.Matrix4x4 matrix2, float amount);
static member Lerp : System.Numerics.Matrix4x4 * System.Numerics.Matrix4x4 * single -> System.Numerics.Matrix4x4
Public Shared Function Lerp (matrix1 As Matrix4x4, matrix2 As Matrix4x4, amount As Single) As Matrix4x4
パラメーター
- matrix1
- Matrix4x4
最初の行列。
- matrix2
- Matrix4x4
2 番目の行列。
- amount
- Single
matrix2
の相対的な重み付け。
戻り値
補間結果の行列。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET