Click or drag to resize

VectorMathLerp(Double, Double, Int32, Double, Int32, Int32) Method

Performs linear interpolation between two vectors at specified points.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void Lerp(
	double t,
	double t0,
	int[] v0,
	double t1,
	int[] v1,
	int[] destinationVector
)

Parameters

t  Double
Scalar parameter of interpolation
t0  Double
Scalar parameter corresponding to first vector v0.
v0  Int32
Vector at first parameter point.
t1  Double
Scalar parameter corresponding to the second vector v1.
v1  Int32
Vector at second parameter point.
destinationVector  Int32
Intepolated vector value at point t
See Also