For this assignment, I decided to further develop on creating fractal trees using recursion.
In the Fractal Tree Sketch from last week, I noticed that branching only occurs at the endpoint of each segment. I would like to add a branch at any point of the segment, not just the endpoint. Also, branching is 100% guaranteed by calling another branch function inside the recursive if statement, which makes it look really fake. This could be fixed by adding a random function whenever it creates a new branch. I also want to improve the visual by adding color shading to make it more realistic instead of just using a single line.
I followed this amazing tutorial by Draw Make & Code.