Interpolation between two XY points

How would I go about interpolating a line or a series of points between a succession of pairs of XY points?

Like interpolating a line (or series of points) between point A(x,y) to point B(x,y), then B to C, then C to D, and so on.

What you mean with interpolating ? Just move with a duration ?

If items from a list you could adapt this with get n for point A and n+1 for point B and more points if wanted ?

Interpolate Points.vuo (5.34 KB)

How about Make Points along Spline with Tension = 1?

Thanks for the suggestions, I’ll check them out.