Find a point between two other points using linear interpolation.
Syntax

[C#]

static PointF Tween(PointF first, PointF last, double t);

[Visual Basic]

Shared Function Tween(first As PointF, last As PointF, t As Double) As PointF
Params
Name Description
first The first point.
last The last point.
t A tween value between 0 and 1.
Notes

None.

Example

None.