円弧上の異なる形状のノード間のパスを自動的に描画する

円弧上の異なる形状のノード間のパスを自動的に描画する

矢印がすべて「同じ円上」にあるノード間に矢印を描画したい画像があります。次のように手動で目的を達成できます。

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{shapes}
\begin{document}
\begin{tikzpicture}[ultra thick, -stealth]
  \node[circle,fill] (a) at (0: 1) {};
  \node[rectangle,minimum width=1cm,fill](b) at (120: 1) {};
  \node[rectangle,minimum height=1cm,fill](c) at (240: 1) {};
  \draw[dashed] (85: 1) arc (85: 30: 1) ;
  \draw (330:1) arc (330: 280:1) ;
  \draw[dashed] (200:1) arc (200: 140:1);
\end{tikzpicture}
\end{document}

しかし、ノードの形状やサイズが異なる場合は、手動で機能する座標を見つける必要があります。私が本当にやりたいのは、ノードのエッジが円と交差する場所を見つけて、それらのエッジを使用して円弧を描くことです。これを自動的に行う方法はありますか?この答え部分的な解決策ではありますが、やはり弧とshorten長さを手動で選択する必要があるようです...

実際の使用例では、ノードには異なるアスペクト比の画像が含まれます。私は、いくつかの奇妙な形のノードを使用してこの問題を近似しました。

答え1

ハイコ・オーバーディーク最高!!!! --

https://tex.stackexchange.com/a/250270/197451

ここに画像の説明を入力してください

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{bending}

\begin{document}
    \begin{tikzpicture}[
    ->,   
    thick,
    main node/.style={circle, fill=blue!20, draw},
    ]
    \newcommand*{\MainNum}{5}
    \newcommand*{\MainRadius}{1.5cm} 
    \newcommand*{\MainStartAngle}{90}
    
    % Print main nodes, node names: p1, p2, ...
    \path
    (0, 0) coordinate (M)
    \foreach \t [count=\i] in {A, Hello\\World, 3, foobar, $\cdot$} {
        +({\i-1)*360/\MainNum + \MainStartAngle}:\MainRadius)
        node[main node, align=center] (p\i) {\t}
    }
    ;  
    
    % Calculate the angle between the equal sides of the triangle
    % with side length \MainRadius, \MainRadius and radius of circle node
    % Result is stored in \p1-angle, \p2-angle, ...
    \foreach \i in {1, ..., \MainNum} {
        \pgfextracty{\dimen0 }{\pgfpointanchor{p\i}{north}} 
        \pgfextracty{\dimen2 }{\pgfpointanchor{p\i}{center}}
        \dimen0=\dimexpr\dimen2 - \dimen0\relax 
        \ifdim\dimen0<0pt \dimen0 = -\dimen0 \fi
        \pgfmathparse{2*asin(\the\dimen0/\MainRadius/2)}
        \global\expandafter\let\csname p\i-angle\endcsname\pgfmathresult
    }
    
    % Draw the arrow arcs
    \foreach \i [evaluate=\i as \nexti using {int(mod(\i, \MainNum)+1}]
    in {1, ..., \MainNum} {  
        \pgfmathsetmacro\StartAngle{   
            (\i-1)*360/\MainNum + \MainStartAngle
            + \csname p\i-angle\endcsname
        }
        \pgfmathsetmacro\EndAngle{
            (\nexti-1)*360/\MainNum + \MainStartAngle
            - \csname p\nexti-angle\endcsname
        }
        \ifdim\EndAngle pt < \StartAngle pt
        \pgfmathsetmacro\EndAngle{\EndAngle + 360}
        \fi
        \draw
        (M) ++(\StartAngle:\MainRadius)
        arc[start angle=\StartAngle, end angle=\EndAngle, radius=\MainRadius]
        ;
    }
    \end{tikzpicture}
\end{document}

関連情報