LerpVectors_Radial


Linearly interpolates between two radial vectors.

Syntax

C++
Python
 
def LerpVectors_Radial(
	inVector0: Vector2D,
	inVector1: Vector2D,
	/,
	*,
	inRotationDirection: RotationDirection | None = None,
	inLambda: float = 0.5
)
-> outVector: Vector2D

Parameters

Name Type Range Default Description
Input value inVector0 Vector2D
Input value inVector1 Vector2D
Input value inRotationDirection RotationDirection | None None Clockwise, counter-clockwise or auto
Input value inLambda float - - 0.5 Interpolation between the input vectors where 0.0 value is equal to inVector0 and 1.0 to inVector1
Output value outVector Vector2D