logothings

Stacks of Squares

##Trying Out Square

Squares 1

Here are the procedures.

to square
fd 50 rt 360 / 4
fd 50 rt 360 / 4
fd 50 rt 360 / 4
fd 50 rt 360 / 4
end

to stack
square
fd 50
square
fd 50
square
bk 50 + 50
end

to stackup
stack
rt 90 fd 50 lt 90
stack
rt 90 fd 50 lt 90
end

The video continues.

Squares 2

And then

Squares 3

The new procedure from the video is:

to stackon
repeat 5 [stack fd 10]
end

And finally:

Squares 4

to stacks
repeat 24 [stackon bk 50 rt 360 / 24]
setc random 256
end

Back to Logo Projects