Click or drag to resize

Vector3Lerp(Vector3, Vector3, Double) 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 Vector3 Lerp(
	Vector3 a,
	Vector3 b,
	double blend
)

Parameters

a  Vector3
First input vector
b  Vector3
Second input vector
blend  Double
The blend factor. a when blend=0, b when blend=1.

Return Value

Vector3
a when blend=0, b when blend=1, and a linear combination otherwise
See Also