对不起,如果这是一个非常简单的问题。如何使矩形从处理窗口的一侧反弹。我不确定错误消息的含义以及“运算符 *= 对于参数类型 PVector int 未定义”。
PVector position, velocity, scaler, scaleSpeed, blurValue, blurSpeed;
PImage avatar;
void setup()
{
size(600,600);
avatar = loadImage("BlackPower.png");
position = new PVector(0, 0);
velocity = new PVector(2,0);
}
void draw()
{
background(255);
translate(position.x, position.y);
position.add(velocity);
fill(0);
rect(50,50, 200,50);
if(position.x>width || position.x<0 ||
position.y>height || position.y<0)
{
velocity*=-1;
}
}