运行此代码时,矩形从左向右“移动”。
x = x + 1
如何生成此代码? void setup() {
size(400, 400);
stroke(255);
background(192, 64, 0);
}
int hoogte = 50;
int breedte = 50;
int x = 50;
void draw () {
rect(x,100, breedte, hoogte);
stroke(181);
x = x + 1;
}
答案 0 :(得分:-1)