# Vector3.Lerp

Linear interpolation is performed between the vectors of From and To with the interpolation parameter T.

![Vector3.Lerp](./images/Vector3LerpCalculator.png)

## Properties

<table border="1" class="docutils">
<thead>
<tr><th>Property Name</th><th>Description</th></tr>
</thead>
<tbody valign="top">
<tr>
<td>
From
</td>
<td>
Starting vector
</td>
</tr>
<tr>
<td>
To
</td>
<td>
End vector
</td>
</tr>
<tr>
<td>
T
</td>
<td>
The interpolation parameter
</td>
</tr>
<tr>
<td>
Result
</td>
<td>
Output result
</td>
</tr>
 </tbody>
</table>

