xxxxxxxxxx
void setup() {
size(500, 500);
background(#F0B8EA);
frameRate(10000);
println("Start:)");
}
void draw() {
//fading
fill(#F0B8EA, 50);
stroke(0, 0);
rect(0, 0, width, height);
//triangle
stroke(0);
strokeWeight(10);
triangle(50,400,450,400,250,50);
//cirkles
strokeWeight(5);
ellipse(250,250,200,150);
ellipse(250,250,200,70);
ellipse(250,250,60,60);
fill(0);
ellipse(250,250,20,20);
//random lines
strokeWeight(random(1/2,4));
stroke(random(100, 255), random(100, 255), random(200, 255), random(200, 255));
fill(random(255), random(255), random(255), random(255));
line( random(500), random(500), 250, 250);
println("Screen refreshed " + frameCount + " times");
}