Drawing Mathematical Numbers and Applications
Drawing Mathematical Numbers and Applications
size(500, 500);
background(255);
void draw() {
float a = 0;
float b = 1;
for (int layer = 0; layer < 5; layer++) { // Change the number of layers
as needed
float angleOffset = layer * (PI / 10); // Different rotation for each layer
float tempA = a;
float tempB = b;
tempA = tempB;
float y = 0;