digraph würfel { rankdir=LR /* left → right, rankdir=TB macht top → bottom */ w [ shape=polygon, sides=6, peripheries=2 ]; w -> 1 [ label="⅙" ]; w -> 2 [ label="⅙", color=red ]; w -> 3 [ label="⅙", style=dotted ]; w -> 4 [ label="⅙", arrowhead=vee ]; w -> 5 [ label="⅙" ]; w -> 6 [ label="⅙", tailport=sw ]; /* pfeil startet südwestlich */ 6 -> g; g [ label="Epischer Gewinn!", shape=box, peripheries=2 ] }