I have six lines emanating from a single point or six lines converging to a single point. Is there any simple way to write one line code in TikZ?
Basically, I have this code and I want to reduce the number of lines. I know I can use options for node
\documentclass{article}
\usepackage{pgfplots,tikz}
\usetikzlibrary{
positioning,
snakes,
shapes,
shadows
}
\begin{document}
\begin{tikzpicture}
\draw[fill=green!80] (0,0) circle (1);
\draw[fill=black](0,0)circle(0.5ex) node[right]{Access Point};
\draw[fill=blue!50] (1,3)--+(300:5) arc (300:330:5)--cycle;
\draw(3,1.5) node{Main Beam};
\draw[fill=black](1,3) circle(0.5ex) node[above]{Base Station};
\node[draw,star,fill=black,scale=0.3] at (4,0){};
\draw(4,0) node[above] {Cell User};
\draw(55:0.5) node[rectangle,fill=black,scale=0.5](a){};
\draw(120:0.8) node[rectangle,fill=black,scale=0.5](b){};
\draw(210:0.7) node[rectangle,fill=black,scale=0.5](c){};
\draw(235:0.3) node[rectangle,fill=black,scale=0.5](d){};
\draw(275:0.8) node[rectangle,fill=black,scale=0.5](e){};
\draw(320:0.6) node[rectangle,fill=black,scale=0.5](f){};
\draw[-,dashed](-2,0)--++(a);
\draw[-,dashed](-2,0)--++(b);
\draw[-,dashed](-2,0)--++(c);
\draw[-,dashed](-2,0)--++(d);
\draw[-,dashed](-2,0)--++(e);
\draw[-,dashed](-2,0)--++(f);
\node[left] at(-2,0){Sensing Devices};
\end{tikzpicture}
\end{document}
