Click or drag to resize

Vector3Lerp Method (Vector3, Vector3, Double)

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: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public static Vector3 Lerp(
	Vector3 a,
	Vector3 b,
	double blend
)

Parameters

a
Type: Internal.Net3dBoolVector3
First input vector
b
Type: Internal.Net3dBoolVector3
Second input vector
blend
Type: SystemDouble
The blend factor. a when blend=0, b when blend=1.

Return Value

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