I am unable to correctly place the alpha angle as well as the rest of this diagram.
My minimal working example (MWE):
\documentclass[tikz,border=5mm]{standalone}
\usetikzlibrary{decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}[scale=1]
\fill[white] (-1,-5) rectangle (10,5);
\draw[thin] (0,0) grid (17,5);
\draw[line width=2pt] (0,4)--(15,4);
\draw[decorate,decoration={border,amplitude=0.6cm}] (0,4)--(15,4);
\path
(3,6.5) node{A}
(8,4.2) node{B}
(3,4.2) node{C}
(4,5) node{$\theta$}
(4,4)node{$\vec{F}$};
\begin{scope}[rotate around={-30:(2.69,0)}]
\draw[line width=2pt](-1,5)--(5,6);
\shade[ball color=blue!100!green!150,opacity=5](2,6.02)circle (0.5);
\shade[ball color=blue!100!green!150,opacity=5](8,8.29)circle (0.5);
\end{scope}
\draw[blue] (6.5421,4.449225) arc(91:180:0.4515) node[midway,left]{$\alpha$};
\draw (11.49,4.5)--(15,4.5);
\drawline width=2pt,rotate around={30:(5,-1)}--(17,0.8);
\end{tikzpicture}
\end{document}
I use \documentclass[12pt]{article}




