SketchBook

点滅する画像

function setup(){
createCanvas(700,700);
}
function draw(){
background(255,255,255);
strokeWeight(20);
stroke(0,0,255);
point(100,50);
stroke(0,255,0);
line(100,100,400,100);
stroke(0,0,0);
fill(255,0,0,random(0,100));
triangle(200,200,400,250,50,400);
fill(255,255,0,random(0,100));
rect(500,500,150,150);
fill(255,0,255,random(0,100));
ellipse(400,400,100);
}