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