Click or drag to resize

Vector4Lerp(Vector4, Double) Method

Linear interpolation between this Vector4 and another Vector4

This is most commonly used to find a point some fraction of the way along a line between two endpoints When t = 0 returns this. When t = 1 returns b. When t = 0.5 returns the point midway between this and b.


Namespace: Microsoft.DirectX
Assembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.00.00
Syntax
C#
public Vector4 Lerp(
	Vector4 b,
	double t
)

Parameters

b  Vector4
End Vector4
t  Double
Interpolant

Return Value

Vector4
Interpolated Vector4
See Also