LerpPoints3D
Linearly interpolates between two points in 3D.
Syntax
C++
C#
Python
def LerpPoints3D( inPoint0: Point3D, inPoint1: Point3D, /, *, inLambda: float = 0.5 ) -> outPoint3D: Point3D
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inPoint0 | Point3D | |||
![]() |
inPoint1 | Point3D | |||
![]() |
inLambda | float | - - ![]() |
0.5 | Interpolation between the input points where 0.0 value is equal to inPoint0 and 1.0 to inPoint1 |
![]() |
outPoint3D | Point3D |


- 