NMD 105 Creative Coding I

Fractals

Fractal In Nature Snowflake Quantum
Fractals in Nature
Cauliflower Fractal
Cauliflower Fractal
Romanesco Broccoli Fractal Leggings Etsy
Romanesco Broccoli Fractal Leggings Etsy
Mandelbrot Fractal Iridescent
Mandelbrot Fractal Iridescent
Fractal Sierpinski Triangle Animated Zoom
Fractal Sierpinski Triangle Animated Zoom
Fractal Shape Evolution
Fractal Shape Evolution
Fractal Tree Construction
Fractal Tree Construction

🎗 Loops do not need to repeat actions exactly

Used to repeat actions quickly or perform recursion.

Syntax

	for ( let counter=0; counter < 100; counter++ ) {
		rect(counter, counter, 10, 10);
	} ;

😬 Avoiding an infinite loop

/