Code viewer for World: Tutorial 3.1 (clone by Dom)

// Cloned by Dom on 2 Nov 2019 from World "Tutorial 3.1" by "Coding Train" project 
// Please leave this clone trail here.
 

/*
https://vimeo.com/channels/learningp5js/138935676
*/

function setup() {
  createCanvas(600, 400);
}

function draw() {
  background(0);
  
  stroke(255);
  strokeWeight(4);
  noFill();
  
  if (mouseY > 300) {
    fill(255, 0, 200);
  }
  
  ellipse(300, 200, 100, 100);
}