> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.AHzAcbA-u2g/rev.493
 * 
 * authors: 
 *   Charlotte Hicks

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



// Name: Charlotte hicks 
// Date: 23/02/2016
// Title: Bullseye

size(400,400);
background(0,255,255);

//bullseye

//inner1
fill(255,0,255);
stroke(0);
strokeWeight(2);
ellipse(200,200,400,400);

//inner2
fill(155,0,155);
stroke(0);
strokeWeight(3);
ellipse(200,200,350,350);

//inner3
fill(100,0,255);
stroke(0);
strokeWeight(4);
ellipse(200,200,300,300);

//inner4
fill(0,155,255);
stroke(0);
strokeWeight(5);
ellipse(200,200,250,250);

//inner5
fill(0,255,155);
stroke(0);
strokeWeight(6);
ellipse(200,200,200,200);

//inner6
fill(0,255,0);
stroke(0);
strokeWeight(7);
ellipse(200,200,150,150);

//inner7
fill(255,300,0);
stroke(0);
strokeWeight(8);
ellipse(200,200,100,100);

//inner8
fill(255,200,0);
stroke(0);
strokeWeight(9);
ellipse(200,200,50,50);

//inner9
fill(255,0,0);
stroke(0);
strokeWeight(10);
ellipse(200,200,10,10);