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
Input value inPath0 Path
Input value inPath1 Path First input path
Input value inLambda float - - 0.5 Interpolation between the input paths where 0.0 value is equal to inPath0 and 1.0 to inPath1
Output value outPath Path Output path