Click or drag to resize

Vector3Lerp(Vector3, Vector3, Double, Vector3) Method

Returns a new Vector that is the linear blend of the 2 given Vectors

Namespace: Internal.Net3dBool
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static void Lerp(
	ref Vector3 a,
	ref Vector3 b,
	double blend,
	out Vector3 result
)

Parameters

a  Vector3
First input vector
b  Vector3
Second input vector
blend  Double
The blend factor. a when blend=0, b when blend=1.
result  Vector3
a when blend=0, b when blend=1, and a linear combination otherwise
See Also