xxxxxxxxxx
42
var x = 35;
var y = 35;
var radius=6;
var drop=1;
var c=359;
function setup() {
createCanvas(400, 800);
colorMode(HSB, c, 68, 100);
ellipseMode (RADIUS);
noStroke();
background(255);
}
function draw() {
// if (mouseIsPressed) {
// if (mouseButton == LEFT){
// drop=drop++;
// } else if (mouseIsPressed == Right) {
// fill (0);
// } else {fill (drop,68,100);
// }
// }
// for (var dot = 0; dot < width+5; dot +=15){
// ellipse (dot,drop,5,5);
// }
// }
if (mouseIsPressed) {x=mouseX,y=mouseY};
c = c/2;
var d = dist(mouseX, mouseY, x, y);
if (d>radius){
radius = radius + 0.25;
fill(mouseY/1.5,68,100);
}else{
radius--;
fill(255);
}
ellipse(x,y,radius, radius)
}