Click or drag to resize

Vector3Lerp Method (Vector3, Vector3, Double, Vector3)

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 void Lerp(
	ref Vector3 a,
	ref Vector3 b,
	double blend,
	out Vector3 result
)

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.
result
Type: Internal.Net3dBoolVector3
a when blend=0, b when blend=1, and a linear combination otherwise
See Also