Created
December 20, 2010 07:54
-
-
Save johnhowe/748140 to your computer and use it in GitHub Desktop.
progressions for trampoline skills for producing a graph with dot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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