Hi

I am trying to plot some points along a line for graphical app I am building in C#.

I have the start Point and end Point, I then draw the line. Then also want put some marks along the line. A function like this would be usefull:

Point[] PointsAlongLine(Point start, Point end, int spacing)
{
?
}

Thanks