I would like to plot circle (or another curve) with positive direction (and show it wit arrows).
This plots the circle
\documentclass{article}
\usepackage{tikz}
\RequirePackage{pgfplots}
\usetikzlibrary{shadows}
\usetikzlibrary{shapes}
\usetikzlibrary{decorations}
\usepackage{verbatim}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=-1.5,xmax=2.5,ymin=-1.5,ymax=1.5,
axis lines=center,
ticks=none,
unit vector ratio*=1 1 1,
]
\addplot [very thick, smooth, domain=(0:2*pi)] ({1.+cos(deg(x))},{sin(deg(x))});
\addplot[only marks,mark=*] coordinates{(1,0)};
\end{axis}
\end{tikzpicture}
\end{document}
And I want to add arrows like that

Would you advise me how to add such arrows?

