I want the arrow to scale with the arc scale. See my example below. You will notice that the arrow looks fine as long as the arc radius is large.
\documentclass[crop,tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows,shapes}
\begin{document}
\tikzset{
pics/carc/.style args={#1:#2:#3}{
code={
\draw[pic actions] (#1:#3) arc(#1:#2:#3);
}
}
}
\begin{tikzpicture}
\draw[thick] (4,2) pic[red, -latex]{carc=10:290:0.2cm};
\draw[thick] (8,2) pic[red, -latex]{carc=10:290:1.2cm};
\end{tikzpicture}
\end{document}


bendinglibrary. – Kpym Oct 15 '15 at 18:28