Click or drag to resize

Matrix4x4Lerp Method

Linearly interpolates between the corresponding values of two matrices.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static Matrix4x4 Lerp(
	Matrix4x4 matrix1,
	Matrix4x4 matrix2,
	double amount
)

Parameters

matrix1
Type: Karamba.GeometryMatrix4x4
The first source matrix.
matrix2
Type: Karamba.GeometryMatrix4x4
The second source matrix.
amount
Type: SystemDouble
The relative weight of the second source matrix.

Return Value

Type: Matrix4x4
The interpolated matrix.
See Also