xxxxxxxxxx
55
function setup () {
createCanvas(windowWidth, windowHeight);
background(0);
stretchy = new Sprite(400, 200, 10, 10);
block = new Sprite();
stretchy.draw = () => {
//fill(237, 205, 0);
let c = color('red');
stretchy.shapeColor = c;
push();
rotate(stretchy.direction);
ellipse(0, 0, 100 + stretchy.speed, 100 - stretchy.speed);
pop();
};
stretchy.update = () => {
stretchy.moveTowards(mouse.x, mouse.y, 0.07);
};
stretchy.moveTowards(mouse.x, mouse.y);
}
function windowResized () {
resizeCanvas(windowWidth, windowHeight);
background(0);
}
function draw(){
background(0, 0, 0, 20);
fill(255);
strokeWeight(10);
stroke('red');
//ellipse(mouseX, mouseY, 80, 80);
}