Interactive Drawing
Screen Recording 2020-09-27 at 11.29.28 PM The Entire action is recorded ^^^ Here is the link to my P5.js Editor: https://editor.p5js.org/xues00/sketches/mgbW2FEcH Here are my Codes: x = 0; y = 0; value = 0; function setup() { createCanvas(400, 400); rectMode(CENTER); } function draw() { // background(237, 34, 93); mouseClicked() keyPressed() fill(value); strokeWeight(value) line(0, 0, 400,… Read more Interactive Drawing