Matrix4x4.Lerp(Matrix4x4, Matrix4x4, Single) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.
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
Parameters
- matrix1
- Matrix4x4
The first matrix.
- matrix2
- Matrix4x4
The second matrix.
- amount
- Single
The relative weighting of matrix2
.
Returns
The interpolated matrix.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.