Snow flake

We will now draw snow flakes using the Koch fractal. A fractal is a geometric pattern repeated at every scale.

The general form is a triangle, with each side given by several recursive calls. Your work is only to write the code of the snowSide method so that it draws one side of the triangle. To make it easier, each sides are represented in a specific color. Just draw the red things (without changing your pen color), and the other colors will be drawn automatically.

Observe the drawing in each world's objective to understand the pattern's logic, and then reproduce it. You must write the snowSide() method, which is recursive but do not call snowFlake from snowSide, or you will get very strange unexpected behaviors.