Nature is artful and mathematical. Spirals abound!

I am doing a webinar tomorrow about creating spirals with LYNX (lynxcoding.club). You can join us — Monday, April 20 at 1pm Eastern by going to CodeToLearn.ca/athome or if you miss it you can catch the recording from there too!

Teachers, kids, and anyone who joins will learn to code spirals of many kinds.

We will explore the mathematics of spirals, the art of nature, and computational thinking into the bargain!

Starts out fairly simply, like this:

to spiral :step :angle

if :step > 100 [stop]

fd :step

rt :angle

wait 3

spiral :step + 5 :angle

end

Here’s the problem! It gets more complex! I have to figure out how I did this one before tomorrow!! LOL