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 | |
|---|---|---|---|---|---|
![]() |
inVector0 | Vector2D | |||
![]() |
inVector1 | Vector2D | |||
![]() |
inRotationDirection | RotationDirection | None | None | Clockwise, counter-clockwise or auto | |
![]() |
inLambda | float | - - ![]() |
0.5 | Interpolation between the input vectors where 0.0 value is equal to inVector0 and 1.0 to inVector1 |
![]() |
outVector | Vector2D |


- 