I am wanting to draw five semi-circles in a row (something like the second photo). This is a graph with the dots as vertices/nodes. I can draw one semi-circle, which is centered at the origin (pleae see first photo) and this is exactly what I want them to look like, but I can't duplicate it at centres (-6;0), (-12;0), (6;0) and (12;0). How do I draw the other 4?
I attach my LateX code.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta,decorations.pathmorphing,backgrounds,positioning,fit,petri,calc,graphs,graphs.standard}
\begin{document}
\begin{figure}[h]
\begin{center}
\begin{tikzpicture}
[scale=0.6,inner sep=0.5mm, % this is the node radius
vertex/.style={circle,draw}, % this defines the default style for the vertex class
thickedge/.style={line width=2pt}] % this defines the default style for the thick edges
\def\r{3}
\foreach \point in {(0:\r) ,(90:\r),(180:\r),(60:\r),(30:\r),(150:\r),(120:\r)}
\draw[fill=white] \point circle(.12);
\node at (60:\r) {} ;
\node at (30:\r) {} ;
\node at (150:\r) {} ;
\node at (120:\r) {} ;
\node[vertex] (1) at (0,0) [fill=white] {};
\node[vertex] (2) at (0,3) [fill=white] {};
\node[vertex] (3) at (-3,0) [fill=white] {};
\node[vertex] (5) at (3,0) [fill=white] {};
\draw (1)--(2);
\draw (3)--(1)--(5);
\draw (0,0)+(122:3cm) arc[start angle=122, end angle=148, radius=3cm];
\draw (0,0)+(32:3cm) arc[start angle=32, end angle=58, radius=3cm];
\draw (0,0)+(28:3cm) arc[start angle=28, end angle=2, radius=3cm];
\draw (0,0)+(-182:3cm) arc[start angle=-182, end angle=-208, radius=3cm];
\draw (0,0)+(-242:3cm) arc[start angle=-242, end angle=-268, radius=3cm];
\draw (0,0)+(-272:3cm) arc[start angle=-272, end angle=-298, radius=3cm];
\end{tikzpicture}
\end{center}
\end{figure}
\end{document}





