xxxxxxxxxx
// vibrating colors: various designs in dark, full, and light hues to show
// which two colors interact in a way that causes the most visual vibration
// between them.
function setup() {
createCanvas(600, 400);
angleMode(DEGREES);
}
function draw() {
background(200);
// Insert your shapes here. Be sure to use translate, rotate, and scale
// to create your composition!
}