I saw the accepted answer to the question: Finding a point along a line a certain distance away from another point!
I am not getting how to use it actually to find the coordinates of the new point at a given distance. This is because I am confused between how to translate to/from the Cartesian system and the vector system. So please explain me the following by walking through the solution suggested in that answer with the following example data.
Suppose I have two points $(0,0)$ and $(1,1)$ and I want to find a point at a distance which is 3/5th of the total distance between the points (i.e. $\frac{3}{5}\sqrt{2})$ from the point $(0,0)$ and lies on the segment.
How do I use the vectors mentioned in the solution given there to find the required coordinates?
Edit: Precisely speaking, What I do expect is the explanation of:
What is vector $\mathbf v$ there if $(x_1,y_1) = (1,1)$ and $(x_0,y_0) = (0,0)$
What is the normalized vector $d\mathbf u$?
How do I do the addition $(x_0,y_0) + d\mathbf u$?