I want to draw a triangle with orientation but I am not able to get it done. Please help me out. I also want to insert a circular arrow in the center.
\documentclass{standalone}
\usepackage{pgf,tikz,pgfplots,bm,tikz-cd}
\pgfplotsset{compat=1.15}
\usepackage{mathrsfs}
\usetikzlibrary{arrows,shapes.geometric,decorations.markings, calc, fadings, decorations.pathreplacing, patterns, decorations.pathmorphing, positioning}
\newcommand{\midarrow}{\tikz \draw[-triangle 90] (0,0) -- +(.2a5,0);}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
\draw [black,line width=1.5pt] (0,0) -- (1.5,2.6) -- (3,0) -- cycle;
\draw [thick] (0,0) -- node {\midarrow} (3,0);
\draw [thick] (1.5,2.6) -- node {\midarrow} (3,0);
\draw [thick] (1.5,2.6) -- node {\midarrow} (0,0);
\filldraw[black] (0,0) circle (3 pt);
\filldraw[black] (3,0) circle (3 pt);
\filldraw[black] (1.5,2.6) circle (3 pt);
\node [below left] at (0,0) {\textbf{a}};
\node [above] at (1.5,2.6) {\textbf{b}};
\node [below right] at (3,0) {\textbf{c}};
\end{tikzpicture}
\end{document}

\draw[line width=1.5pt,-{Latex[bend]}] (270:0.5) arc(270:-120:0.5);– Apr 29 '19 at 03:46