xxxxxxxxxx
29
let s = 0.5;
let sChange = 0.01;
function setup() {
createCanvas(400, 400);
rectMode(CENTER);
background(255);
angleMode(DEGREES);
colorMode(HSB);
}
function draw() {
translate(width/2 + s, height/2);
scale(s);
rotate(frameCount);
s = s + sChange;
if(s >= 3 || s <= 0) {
sChange = -sChange;
}
noStroke();
fill(0, 80, 100);
circle(-100, -100, 150);
fill(90, 80, 100);
square(100, -100, 150);
fill(180, 80, 100);
square(-100, 100, 150);
fill(270, 80, 100);
circle(100, 100, 150);
}