xxxxxxxxxx
49
let rSlider, gSlider, bSlider;
function setup() {
// create canvas
//createCanvas(720, 400);
createCanvas(windowWidth, windowHeight);
textSize(15);
noStroke();
textFont('Montserrat');
}
function draw() {
background(245);
let colorfigura = color(0,163,255);
let rectSize=windowWidth*.15;
fill(255,0,0);
push();
translate(windowWidth / 3.5, windowHeight / 2);
rotate(-millis() / 1000);
rectMode(CENTER);
fill(colorfigura);
rect(-rectSize/2, -rectSize/2, rectSize, rectSize);
pop();
fill(0,255,255);
ellipse(windowWidth / 3.5, windowHeight / 2, windowWidth*.02, windowWidth*.02);
push();
translate(windowWidth / 1.5, windowHeight / 2);
rotate(millis() / 1000);
rectMode(CORNER);
fill(colorfigura);
rect(-rectSize/2, -rectSize/2, rectSize, rectSize);
pop();
fill(0,255,255);
ellipse(windowWidth / 1.5, windowHeight / 2, windowWidth*.02, windowWidth*.02);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}