Advanced Geometry

This is the part where things get weird.

You will learn about fractals, tessellations, and other fun things that will make your brain go WHOA!

Calculus of Self Importance

Geometric Surrealism

Here is a picture of a fractal:

And here is a code example of a fractal:

				`#include <stdio.h>
int main() {
	printf("Fractal example code\n");
	return 0;
}
`