Line 88: | Line 88: | ||
|- | |- | ||
|} | |} | ||
==Cute Bauhaus== | |||
==Cat Eyes== | ==Cat Eyes== |
Revision as of 19:53, 19 March 2019
for Computers
Kasimir Malewitsch's bird
Cute Bauhaus
Cat Eyes
Result | Algorithm |
---|---|
int gap=100;
void setup(){
size(800,600);
background(0,230,115);
smooth(8);
}
void draw(){
float speed= sin(1)*30;
frameRate(speed);
for(int i=1; i<=7; i+=1) {
for (int j=1; j<=5; j+=1){
int xPos=i*gap;
int yPos=j*gap;
float ellWidth=random(100);
float ellHeight=random(100);
float R=random(100,255);
float G=random(100,255);
float B=random(100,255);
noStroke();
fill(R,G,B);
ellipse(xPos,yPos,ellWidth,ellHeight);
}
}
} |