Matrix3x2.Lerp(Matrix3x2, Matrix3x2, Single) メソッド

定義

2 番目の行列の重みを指定する値に基づいて、1 つの行列から 2 番目の行列への線形補間を実行します。

public:
 static System::Numerics::Matrix3x2 Lerp(System::Numerics::Matrix3x2 matrix1, System::Numerics::Matrix3x2 matrix2, float amount);
public static System.Numerics.Matrix3x2 Lerp(System.Numerics.Matrix3x2 matrix1, System.Numerics.Matrix3x2 matrix2, float amount);
static member Lerp : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 * single -> System.Numerics.Matrix3x2
Public Shared Function Lerp (matrix1 As Matrix3x2, matrix2 As Matrix3x2, amount As Single) As Matrix3x2

パラメーター

matrix1
Matrix3x2

最初の行列。

matrix2
Matrix3x2

2 番目の行列。

amount
Single

matrix2の相対的な重み付け。

返品

補間行列。

適用対象