Technology and Communications
MCS 366 – Fall 2021 – Online – Lehman College, CUNY
Designing with Technology
unit 9
Nov 03
void setup () { size (800, 600); }
void draw () { noStroke (); fill (random(350), 0, 0); circle(mouseX, mouseY, 100); }
Your email address will not be published.
Δ
Your browser doesn't support the HTML5 CANVAS tag.
1 comments
Author
void setup () {
size (800, 600);
}
void draw () {
noStroke ();
fill (random(350), 0, 0);
circle(mouseX, mouseY, 100);
}