I need a diagram with 8 radial boxes coming out of the circle, I currently have
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes, arrows}
\begin{document}
\thispagestyle{empty}
\begin{center}
\begin{tikzpicture}
\draw (0,0) circle (2.3);
\draw[thick, black, -] (0,0) -- ++(45:1.5) node[coordinate] (a) {} node[right, black] {$m$};
\draw (0.1,0.7) node [right] {$r_A$};
\draw (1.4,-0.2) node[right] {$r_B$};
\draw[thick, red!50!black,->] (2.75, 0) -- (2.75,1.3) node[right, black]{$v_B$};
\draw[thick, black, |-|] (0,0) -- ++(0:2.75);
\draw[thick, green!50!black,->] (a) -- ++(135:1cm) node[right, black]{$v_A$};
\filldraw (1.04,1.06) circle (2.5pt);
\filldraw (0,0) circle (1.5pt);
\draw (-0.2,2.3) -- (-0.2, 3) -- (0.2,3) -- (0.2,2.3);
\draw (-0.2,-2.3) -- (-0.2, -3) -- (0.2,-3) -- (0.2,-2.3);
\draw (-2.3,-0.2) -- (-3, -0.2) -- (-3,0.2) -- (-2.3,0.2);
\draw (2.3,-0.2) -- (3, -0.2) -- (3,0.2) -- (2.3,0.2);
\def\Radius{2.3cm}
\draw
\foreach \a in {0, 45, ..., 350} {
(0, 0) -- (\a:\Radius)
}
;
\end{tikzpicture}
\end{center}
\end{document}
I want it so that there are four more radial masks at 45, 135, 225 and 315 degrees, I'm a bit new to latex so a little help would be appreciated




