-
[[fractals]]
-
- Algorithmic Botany
- 101computing.net/recursive-tree-challenge
- Algorithmic Doodle Art teach london computing - unplugged
-
2020 Mathematical Art Exhibition
- Mathematicians and artists continue to create stunning works in all media and to explore the visualization of mathematics--origami, computer-generated landscapes, tessellations, fractals, anamorphic art, and more
-
- Organically growing network - animated in browser
import turtle, random
s=turtle.getscreen()
f=turtle.Turtle()
while True:
f.pendown()
for l in range (7):
f.circle((l+1)*7)
f.penup()
r=random.randint(0,256)
f.left(7)
f.color((r,128,128))
f.pendown()