LerpPaths
Linearly interpolates between two paths.
Syntax
C++
Python
def LerpPaths( inPath0: Path, inPath1: Path, outPath: Path, /, *, inLambda: float = 0.5 ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inPath0 | Path | |||
![]() |
inPath1 | Path | First input path | ||
![]() |
inLambda | float | - - ![]() |
0.5 | Interpolation between the input paths where 0.0 value is equal to inPath0 and 1.0 to inPath1 |
![]() |
outPath | Path | Output path |


- 