I would like to draw an edge between two nodes which lies on a clip of an circle. For small angles I was able to get some more or less realistic appearance by using bend left and bend right, but for large distances, for example to connect a node which lies at 90° with an node at 225°, this is getting ugly.
However, drawing an arc alone does not draw arrows and does not end at the "borders" of the nodes, but at their center. So is there any solution, e.g. an argument for "edge" while building a path, where I can specify an arc on which it should lie?
Here is an example:
\documentclass{scrartcl}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (V1) at (0,8) {$\o{v}_1$};
\node (V3) at (4,4) {$\o{v}_2$};
\node (V5) at (0,0) {$\o{v}_3$};
\node (V6) at (-2.83,1.17) {$\o{v}_4$};
\node at (0,4) {$\o{C}$};
\path (V1) edge[bend left=45] node[above right] {$\o{g}_1(x)$} (V3)
(V5) edge[bend right=45] node[below right] {$\o{g}_2(x)$} (V3)
(V5) edge[bend left=15] node[below] {$\o{g}_3(x)$} (V6)
(V1) edge[bend right=70] node[above left] {$\o{g}_4(x)$} (V6);
\end{tikzpicture}
\end{document}
While the first three edges of the path look more or less as if the would lie on a circle, the fourth one makes the circle a potato.
\documentclass{...}
and ending with\end{document}
.