//Simple logo int h = 80; int w = 50; float angle = PI/4.0; color[] colors ={color(255,165,0), color(255,255,0), color(20,220,50), color(135,165,235), color(135,206,255), color(100,43,200), color(255,105,180),color(255,69,0)}; void setup(){ size(400,400); noLoop(); smooth(); noStroke(); background(255); } void draw(){ translate(width/2,height/2); rectMode(CENTER); for(int i=0; i<8; i++){ fill(colors[i], 170); leaf(); // print out number to show sequence of leaves // fill(0); // text(i, 0, -30); rotate(angle); } } void leaf(){ arc(0, -50,50,50,PI,TWO_PI); rectMode(CENTER); rect(0,-40,50.2,20.2); arc(0, -30,50,50,0,PI); } //eye.pde int n=10; int[] eyex; int[] eyey; int[] eyesize; void setup() { size(600, 600); background(0); smooth(); noStroke(); eyex = new int[n]; eyey = new int[n]; eyesize = new int[n]; for (int i=0; i