I have:
{{θ -> 0}, {θ -> (2 π)/
3}, {θ -> π}, {θ -> (4 π)/3}}
I would like to create a list of points $(\cos\theta,\sin\theta)$ using each of the values in this list. That is, I want a simple way to convert to:
$$\{(\cos 0,\sin 0), (\cos\frac{2\pi}{3},\sin\frac{2\pi}{3}), (\cos\pi,\sin\pi), (\cos\frac{4\pi}{3},\sin\frac{4\pi}{3})\}$$


