xxxxxxxxxx
29
function setup() {
createCanvas(400, 400);
}
function draw() {
background('black')
Strive.drawTickAxes()
fill(0,255,0,100)
noStroke()
mx = mouseX
my = mouseY
/*----------------------------------------------------------------------#
# Q: Draw 4 circles that touch each other and fill up the entire canvas #
#----------------------------------------------------------------------*/
/******************************************#
# only change what's below this line #
# copy paste what's below as your solution #
#******************************************/
circle(200, 200, 100)
/******************************************#
# only change what's above this line #
# copy paste what's above as your solution #
#******************************************/
}