Click or drag to resize

Vector2FLerp Method (Vector2F, Vector2F, Single, Vector2F)

Performs a linear interpolation between two vectors based on the given weighting.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public static void Lerp(
	ref Vector2F v1,
	ref Vector2F v2,
	float amount,
	out Vector2F result
)

Parameters

v1
Type: NeoAxisVector2F
The first vector.
v2
Type: NeoAxisVector2F
The second vector.
amount
Type: SystemSingle
A value between 0 and 1 that indicates the weight of v2.
result
Type: NeoAxisVector2F
When the method completes, contains the linear interpolation of the two vectors.
See Also