Skip to content

Instantly share code, notes, and snippets.

@johnhowe
Created December 20, 2010 07:54
Show Gist options
  • Save johnhowe/748140 to your computer and use it in GitHub Desktop.
Save johnhowe/748140 to your computer and use it in GitHub Desktop.
progressions for trampoline skills for producing a graph with dot
digraph G {
node [color=red]
"Straight bounces" -> "Tuck jump";
"Straight bounces" -> "Pike jump";
"Straight bounces" -> "Straddle jump";
node [color=blue]
{"Tuck jump";"Pike jump";"Straddle jump"} -> "Back drop";
"Tuck jump" -> "Hands and knees"
"Hands and knees" -> "Stomach drop"
node [color=green]
"Back drop" -> "Back pull-over"
"knee flip" [label="Hands and knees,\n front somersault to back"]
"Hands and knees" -> "knee flip"
"knee flip" -> "Front somersault"
node [color=yellow]
"Back pull-over" -> "Back somersault"
node [color=purple]
node [color=black]
node [color=orange]
node [color=brown]
node [color=white]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment