Loops

Looping pattern

For Loop:

For loop takes three expressions:

for(initialisation, condition, iteration){ }
e.g.
for( let i = 0 ; i < width ; i += 50 ){
circle(i, 20, 10);
}

coloured background coloured background

Nested For Loop:

coloured background coloured background

Continue Reading

Variables

Learn More

Key Controls

Learn More

Texturing 3D

Learn More