我如何将y重新设置为完全值?模运算符在x上运行,因为变量从0开始并且一直增加到宽度,但是我无法弄清楚要写什么来将其重置为完全值。我不能使用超过2个声明的变量。谢谢你的帮助。
int y=height;
int x=0;
void setup()
{
size(100,100);
frameRate(30);
}
void draw()
{
background(200);
line(0,y,width,y); //bottom to top
line(0,x,width,x); // top to bottom
line(y,0,y,height); //left to right
line(x,0,x,height); //right to left
y=y-1;
x = (x+1) % width;
}
答案 0 :(得分:0)