答案 0 :(得分:0)
这样的事情就是你所追求的。
请记住,这主要是伪代码!
var width = 24;
var direction = -1;
function draw() {
// Draw a circle
stroke(50);
fill(100);
ellipse(x, y, width, 24);
width = width + direction; // direction is either 1 or -1
// flip direction
if (Math.abs(width) > 24) {
direction *= -1;
}
}