Code viewer for World: Tutorial 3.3 (clone by p b...

// Cloned by p birdwood on 10 Sep 2020 from World "Tutorial 3.3" by "Coding Train" project 
// Please leave this clone trail here.
 

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

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

function draw() {
  background(0);
  
  stroke(255);
  strokeWeight(4);
  noFill();
  
  if (mouseX > 300 && mouseX < 400) {
    fill(255, 0, 200);
  }
    rect(300, 200, 100, 100);
}