/*https://editor.p5js.org/p5/sketches/Drawing:_Continuous_Lines * @name Continous Lines * @description Click and drag the mouse to draw a line. */ function setup() { createCanvas(710, 400); background(102); } function draw() { stroke(255); if (mouseIsPressed === true) { line(mouseX, mouseY, pmouseX, pmouseY); } }