Just watch it being created. It takes about 30 seconds to draw, but in turbo mode it renders almost instantly.
I first made this design on Python, but I made it on scratch too. In Python, you can get it in better quality. Just copy an paste this code into the Python editor to do this. I know it's not the most efficient code, but it is just how I like to code in Python. PYTHON CODE: import turtle as t def hexagon(x, y, size): (INDENT HERE) t.penup() (INDENT HERE) t.goto(x, y) (INDENT HERE) t.pendown() (INDENT HERE) for i in range(6): (TWO INDENTS HERE) t.forward(size) (TWO INDENTS HERE) t.right(60) t.speed(0) for i in range(360): (INDENT HERE) hexagon(0, 0, 200) (INDENT HERE) t.right(1) t.hideturtle