LerpVectors
Linearly interpolates between two vectors.
Syntax
C++
Python
def LerpVectors( inVector0: Vector2D, inVector1: Vector2D, /, *, inLambda: float = 0.5 ) -> outVector: Vector2D
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inVector0 | Vector2D | |||
![]() |
inVector1 | Vector2D | |||
![]() |
inLambda | float | - - ![]() |
0.5 | Interpolation between the input vectors where 0.0 value is equal to inVector0 and 1.0 to inVector1 |
![]() |
outVector | Vector2D |


- 