triangle orientation 0 \documentclass[tikz]{standalone} \usepackage{pgflibraryshapes} \usetikzlibrary{backgrounds} \usetikzlibrary{arrows} \begin{document} \begin{tikzpicture}[scale = 1.,font=\fontsize{8}{8}\selectfont] \path (-2.,-2.) node(3_0) [draw,shape=circle,color=gray] {3}; \path (2.,-2.) node(4_0) [draw,shape=circle,color=gray] {4}; \path (-2.,2.) node(5_0) [draw,shape=circle,color=gray] {5}; \path (0.,0.) node(6_0) [draw,shape=circle,color=gray] {6}; \path (-2.,0.) node(7_0) [draw,shape=circle,color=gray] {7}; \path (-1.,-1.) node(8_0) [draw,shape=circle,color=gray] {8} -- (-1.,0.) node(9_0) [draw,shape=circle,color=gray] {9} -- (0.,-2.) node(10_0) [draw,shape=circle,color=gray] {10} -- (1.,-1.) node(11_0) [draw,shape=circle,color=gray] {11} -- (-1.,1.) node(12_0) [draw,shape=circle,color=gray] {12} -- (-2.,1.) node(13_0) [draw,shape=circle,color=gray] {13} -- (-2.,-1.) node(14_0) [draw,shape=circle,color=gray] {14} -- (0,0); \draw[color=gray] (3_0) -- (10_0) -- (4_0) -- (11_0) -- (6_0) -- (8_0) -- (3_0); \draw[color=gray] (6_0) -- (12_0) -- (5_0) -- (13_0) -- (7_0) -- (9_0) -- (6_0); \draw[color=gray] (7_0) -- (14_0) -- (3_0) -- (8_0) -- (6_0) -- (9_0) -- (7_0); \path (0.,-1.33333) node(0_0) [] {}; \path (-1.33333,0.666667) node(1_0) [] {}; \path (-1.33333,-0.666667) node(2_0) [] {}; \end{tikzpicture} \end{document}