/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://studio.sketchpad.cc/sp/pad/view/ro.IwiSG2POVg1/rev.143
*
* authors:
*
* Christina Dunn
* Nathaniel Phillips
* Ari Bader-Natal
* Claudio Pinho
* J.D. Zamfirescu
* tapesofwrath
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
// This sketch builds on a prior work created by Davide Gomba
// http://studio.sketchpad.cc/sp/pad/view/Bq2EowcGSV/rev.80
void setup() {
size(200, 200);
colorMode(HSB, width, height, 100);
}
void draw() {
color viola = color(mouseX, mouseY, 100);
background(viola);
// fill(viola);
// stroke(0, 0, 0);
// strokeWeight(10);
// rect(50, 50, 100, 100);
}