Given the following:
– starting point (coordinate)
– angle (degree)
– velocity
.. I’d like to calculate the given trajectory.
For example for the image below w/ velocity 1: (10,10) (9,9) (8,8) (7,7) ..
It should be able to move in all directions.
How can I calculate it?

If you have an angle and a speed (scalar), the components in the x- and y-directions are easy:
Angle needs to be in radians for most languages, not degrees. Make sure you convert it.
So if you have a point (ux, uy) at time t1, then the position at time t2 is:
Let’s see what it looks like in Java: