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


- 