P5 sketch

 

function setup() {
  createCanvas(1280, 720);
}

function draw() {
  background(200, 220, 255); 0

  fill(255, 255, 0);
  ellipse(mouseX, mouseY, 100, 100); 
}


Comments

Popular Posts