Inspired by an article on Prime Spiral and Hough transform I tried to analyze patterns created by plotting numbers on spiral (Archimedean?).
$$x = \cos( angle ) * radius$$ $$y = \sin( angle ) * radius$$
where angle and radius is incremented by a constant value

No surprise so far.
When all non prime numbers are suppressed this ray pattern appears at a specific point (manipulating the increments of the spiral):

It turned out that the increment of the angle is exactly $$\cfrac{\pi}{30}$$
All prime numbers are on 16 lines (ignoring that the first numbers probably don't match the scheme).
Setting the increments to $$\cfrac{\pi}{3}$$
leads to (white dots are prime numbers):

Mirroring them on the x-axis doesn't seem to help to have them on a single line. Because there are some non prime numbers in the lines.
What could I do the force them to a single straight line?
If this pattern is a well known property of prime numbers how is it called?
In case someone would like to experiment I added the java source at github
Related:
There are 2 behaviours going on here.
In your last picture, it's easy to see that all numbers lie on the 6 rays through the origin. Why? This is because there are $2\pi$ radians in a circle, and you are incrementing by $\pi/3$ radians each time (which is 1/6 of the circle). This is why you are getting distinct rays.
The other behaviour occurs when you only look at primes. In the second picture (the one consisting of only primes), there is space for 60 rays (since you are incrementing by $\pi/30$ radians, which is 1/60th of a circle each time). So the new question is, why do only 16 rays appear?
The answer is that $\varphi(60) = 16$, meaning that there are only 16 residue classes for primes to fit in mod 60. Stated differently there are only 16 solutions to $p \equiv x \pmod {60}$ in $x$, where $p$ ranges across all the primes. So there are 16 distinguished rays containing primes.
Similarly, there are two distinguished rays in the last picture, which is why you can only see primes on 2 of the rays.
You might be interested to know that the property of being a ray containing primes will not be origin-symmetric, but mirror-symmetric over the horizontal line $y = 0$. This has to do with how $\gcd(x,n) = \gcd(n-x,n)$, and the order in which you are plotting these rays.
To answer your final question, you can plot all primes (except 2) on the same line by using $\pi$ as your increment, or by using $2\pi$ as your increment. The first is equivalent to saying that all primes except $2$ are odd. The second actually puts all numbers on a single line.