اگه منظورتون اینه که یه نقطه وسط شکل گذاشته بشه، به اینصورته:
\documentclass{report}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}[circ/.style={circle, draw, fill, inner sep=2}]
\foreach \a/\label/\dir in {0/a/right, 60/b/above, 120/c/above, 180/d/left, 240/e/below, 300/f/below} {
\draw[-] (\a:2cm) node [circ] {} node [\dir=3pt] (\label) {$ \label $} -- ({\a+60}:2cm);
}
\draw[-] (60:2cm) --(180:2cm);
\draw ($ (a)!.5!(d) $) node [circ] {};
\end{tikzpicture}
\end{document}
ضمنا این شکل ۶ ضلعیه.
خروجی: