How to draw the first picture in Figure 1 of the paper on page 2?
I want to draw a similar picture for a hexagon. The following are my codes.
\begin{tikzpicture}
\foreach \a in {1,2,...,5} { %\a is the angle variable
\draw (-\a*72+72*2+18:2cm)--(-\a*72+72*3+18:2cm);
}
\coordinate (b1) at (-1*72+72*2+18:2cm);
\coordinate (b2) at (-2*72+72*2+18:2cm);
\coordinate (b3) at (-3*72+72*2+18:2cm);
\coordinate (b4) at (-4*72+72*2+18:2cm);
\coordinate (b5) at (-5*72+72*2+18:2cm);
\draw (-1*72+72*2+18:2cm)--(-5*72+72*3+18:2cm);
\node(a1) at (-1*72+72*2+18:2cm) [above=1] {1};
\node(a2) at (-2*72+72*2+18:2cm) [right=1] {2};
\node(a3) at (-3*72+72*2+18:2cm) [right=1] {3};
\node(a4) at (-4*72+72*2+18:2cm) [left=1] {4};
\node(a5) at (-5*72+72*2+18:2cm) [left=1] {5};
\end{tikzpicture}
I want to draw a red arrow which is parallel to the line 2 to 1 and interset the line from 1 to 4. This arrow ends when interset the line from 1 to 4. How to do this in tikz? I tried to shift the coordinates of 1 and 2 but not successful.
Thank you very much.

