How to draw for instance a beam (or even fancier forms) from a given center line? Here is what i mean but with a rather not so good solution. I would like to add pattern, etc.
\documentclass[12pt,tikz,border=5pt]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
% grid to see the coordinates
% Point A with circle and label
\coordinate [label={[label distance=3mm]below:A}] (A) at (1,3);
% Point B with circle and label
\coordinate [label={[label distance=3mm]right:B}](B) at (6,6);
% Point C with circle and label
\coordinate [label={[label distance=3mm]below:C}](C) at (7,4);
% Point D with circle and label
\coordinate [label={[label distance=3mm]right:D}](D) at (9,4);
\draw (D) circle [radius=3pt];
\draw[line width=20pt,line cap=round] (A) -- (B) -- (C) -- (D);
\draw[line width=14pt,white,line cap=round] (A) -- (B) -- (C) -- (D);
\draw (A) -- (B) -- (C) -- (D);
% grid to see the coordinates
\draw[help lines, step=1] (0,0) grid (10,8);
\draw (A) circle [radius=3pt];
\draw (B) circle [radius=3pt];
\draw (C) circle [radius=3pt];
\draw (D) circle [radius=3pt];
\end{tikzpicture}
\end{document}


