You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Interpolations » FIL.LerpPoints
Linearly interpolates between two points.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void LerpPoints ( FilNet.Point2D inPoint0, FilNet.Point2D inPoint1, float inLambda, out FilNet.Point2D outPoint )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint0 | FilNet.Point2D | |||
![]() | inPoint1 | FilNet.Point2D | |||
![]() | 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. |
![]() | outPoint | FilNet.Point2D |
Examples
![]() |
LerpPoints performed on red inPoint0 and blue inPoint1 with inLambda = 0,25. Green is the resulting outPoint.
![]() |
LerpPoints performed on red inPoint0 and blue inPoint1 with inLambda = -1,0. Green is the resulting outPoint.
Remarks
Please note that:
- interpolation begins at inPoint0,
- for positive inLambda values interpolation is performed in the direction of inPoint1 while for negative - in the direction of a point which is the result of the following operation: (inPoint0 - inPoint1), in example a point acquired by mirroring inPoint1 by inPoint0.