xxxxxxxxxx
/*----------------------------------------
En proceso intersección de anillos...
22/06/2017
----------------------------------------*/
function setup() {
createCanvas(windowWidth, windowHeight);
background(150);
}
function draw() {
noFill();
//anillo celeste
stroke(0, 132, 200);
strokeWeight(15);
arc(150, 150, 150, 150, 0, 2*PI);
//anillo negro
stroke(0);
strokeWeight(15);
arc(330, 150, 150, 150, 0, 2*PI);
//anillo rojo
stroke(222, 0, 34);
strokeWeight(15);
arc(510, 150, 150, 150, 0, 2*PI);
//anillo amarillo
stroke(242, 195, 0);
strokeWeight(15);
arc(240, 225, 150, 150, 0, 2*PI);
//anillo verde
stroke(0, 158, 2);
strokeWeight(15);
arc(420, 225, 150, 150, 0, 2*PI);
}