xxxxxxxxxx
var thesize = 1;
var color0 = "darkmagenta";
var color1 = "darkgreen";
var color2 = "lightseagreen";
var color3 = "cornflowerblue";
function setup() {
createCanvas(windowWidth, windowHeight);
background(255)
}
function draw() {
fill(0);
strokeWeight(5);
line(mouseX, mouseY, thesize, thesize);
fill(0);
ellipse(mouseX, mouseY, thesize, thesize);
var whichcolor = floor(random(4));
if(whichcolor==0) stroke(color0);
if(whichcolor==1) stroke(color1);
if(whichcolor==2) stroke(color2);
if(whichcolor==3) stroke(color3);
var speed = dist(mouseX, thesize, pmouseX, thesize);
thesize = speed
}
function keyTyped(){
if(key=='k')
background(255);
thesize = 1
if(key=='j')
background("darkseagreen");
thesize = 1
if(key=='h')
background("thistle");
thesize = 1
if(key=='g')
background("paleturquoise");
thesize = 1
}