xxxxxxxxxx
36
/*
Flower Garden Sketch
By pressing the mouse, the user places a flower in the garden at the mouse location.
Please help - when I click, nothing happens! Can you find the bug?
Dimity Miller, 2020
*/
function setup() {
createCanvas(400, 400);
colorMode(HSB);
background(152, 28 , 92);
noStroke();
}
function draw() {
if (mouseIsPressed) {
//draw pink flower petals around mouse
fill(341, 30, 100);
circle(mouseX+10, mouseY+10, 30);
circle(mouseX+10, mouseY-10, 30);
circle(mouseX-10, mouseY+10, 30);
circle(mouseX-10, mouseY-10, 30);
//draw white flower centre at mouse location
fill(255);
circle(mouseX, mouseY, 15);
}
}