Self-Check: Tree Variations

Tim points out that we are missing an "On this page" here. --MF, 5/23/20

We took this recursive tree version and changed it in different ways. Your goal is to figure out what we changed in the code. The original code and picture are shown below:
tree level:(level#) size:(size#){if(level=1){move(size) steps; move(-1*size) steps}else{move(size) steps; turn counterclockwise (15) degrees; tree level:(level-1) size:(size*0.75); turn clockwise(15) degrees; turn clockwise(15) degrees; tree level:(level-1) size:(size*0.75); turn counterclockwise (15); move(-1*size) steps}} tree level: (5) size: (100)-Upwards facing tree with trunk and four levels of branches

Tree with trunk and four levels of branches swaying to the left

Choose one:

We changed the turn amount between branches.
We changed the scaling factor (how much the length decreases each time).
We added additional recursive calls to the function and other angle stuff to make it all work out.
Tree with four branches instead of two splitting at each level

Choose one:

We changed the turn amount between branches.
We changed the scaling factor (how much the length decreases each time).
We added additional recursive calls to the function and other angle stuff to make it all work out.
Tree with longer and longer branches

Choose one:

We changed the turn amount between branches.
We changed the scaling factor (how much the length decreases each time).
We added additional recursive calls to the function and other angle stuff to make it all work out.
Tree with same-size branches

Choose one:

We changed the turn amount between branches.
We changed the scaling factor (how much the length decreases each time).
We added additional recursive calls to the function and other angle stuff to make it all work out.
Tree with right angle branches

Choose one:

We changed the turn amount between each branch.
We changed the scaling factor (how much the length decreases each time).
We added additional recursive calls to the function and other angle stuff to make it all work out.