xxxxxxxxxx
43
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
//noFill()
//strokeWeight(3)
stroke(0, 0 ,255 )
fill(0, 0 ,255 )
circle(width/2, height/2, 300)
filter(BLUR, 20)
stroke(0, 25 , 0 )
fill(0, 25 , 0 )
circle(width/2, height/2, 300)
filter(BLUR, 10)
stroke(255, 0 ,255 )
fill(255, 0 ,255 )
circle(width/2, height/2, 300)
filter(BLUR, 2)
stroke(255)
fill(0 )
circle(width/2, height/2, 300)
}