LA 3-Dodo-Scrap-3.3

var u = 20;

function setup() {
  createCanvas(400, 400);
  angleMode(DEGREES);
  colorMode(HSB)
}

function draw() {
  background(0);
  displayMousePosition();
  noStroke();

  c = color(0, 100, 100);
  fill(c);
  ellipse(width / 2, height / 2, 400);

  c = color(0, 0, 100);
  fill(c);
  arc(width / 2, height / 2, 400, 400, -90, 90);

  c = color(0, 100, 100);
  fill(c);
  ellipse(width / 2, height / 4, 200, 200);

  c = color(0, 0, 100);
  fill(c);
  ellipse(200, 300, 200);

  c = color(0, 0, 100);
  fill(c);
  ellipse(width / 2, height / 4, 50);

  c = color(0, 100, 100);
  fill(c);
  ellipse(200, 300, 50, 50);
}
function displayMousePosition() {
  textFont("menlo");
  textSize(14);
  text("x:" + mouseX, 10, 20);
  text("y:" + mouseY, 10, 40);
}