You can make use of the tikz library
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
% equidistant points and arc
\foreach \x [count=\p] in {0,...,11} {
\node[shape=circle,fill=black, scale=0.5] (\p) at (-\x*30:2) {};};
\foreach \x [count=\p] in {0,...,5} {
\draw (-\x*60:2.4) node {\p};
\draw (-30-\x*60:2.4) node {$\bar{\p}$};};
\draw (1) arc (0:360:2);
\draw[dashed] (1) -- (3) -- (5) -- (1);
% axes
\draw [dotted, gray] (-2.6,0) -- (2.6,0);
\draw [dotted, gray] (0,-2.15) -- (0,2.15);
\end{tikzpicture}
\end{document}