LerpPoints


Linearly interpolates between two points.

Syntax

C++
Python
 
def LerpPoints(
	inPoint0: Point2D,
	inPoint1: Point2D,
	/,
	*,
	inLambda: float = 0.5
)
-> outPoint: Point2D

Parameters

Name Type Range Default Description
Input value inPoint0 Point2D
Input value inPoint1 Point2D
Input value inLambda float - - 0.5 Interpolation between the input points where 0.0 value is equal to inPoint0 and 1.0 to inPoint1
Output value outPoint Point2D