digraph G { node [fontname = "Handlee"]; edge [fontname = "Handlee"]; splines=false; draw [ label = "Draw a picture"; shape = rect; ]; win [ label = "You win!"; shape = oval; ]; guess [ label = "Did they\nguess it?"; shape = diamond; ]; point [ label = "Point repeatedly\nto the same picture."; shape = rect; ]; draw -> guess; win -> guess [ label = "Yes"; dir=back ]; guess -> point [ label = "No" ]; { rank=same; guess; point; win; } { rank=same; guess2; point2; } guess2 [ label = " "; color= white ; ]; point2 [ label = " "; color=white; ]; point:s -> point2:n [ arrowhead = none ]; guess2:n -> point2:n [ arrowhead = none ]; guess2:n -> guess:s; }