You are here: Start » FIL.NET » Function Reference » Geometry 3D » Geometry 3D Interpolations » FIL.LerpPoints3D
Linearly interpolates between two points in 3D.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void LerpPoints3D ( FilNet.Point3D inPoint0, FilNet.Point3D inPoint1, float inLambda, out FilNet.Point3D outPoint3D )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint0 | FilNet.Point3D | |||
![]() | inPoint1 | FilNet.Point3D | |||
![]() | inLambda | float | <-INF, INF> | 0.5f | Interpolation between the input points where 0.0 value is equal to inPoint0 and 1.0 to inPoint1. Default value: 0.5f. |
![]() | outPoint3D | FilNet.Point3D |