我有一个每90个像素绘制一个极点网格的函数,但是当我调用它时它不会在屏幕上输出任何内容。以下是相关代码:
void poles() {
stroke(0, 0, 255);
fill(0, 0, 255);
strokeWeight(5);
int polelocationX=90;
int polelocationY=90;
for (polelocationX=90; polelocationX<721; polelocationX+=90) {
for (polelocationY=90; polelocationY<721; polelocationY+=90) {
ellipse(polelocationX, polelocationY, 5, 5);
}
}
}
void draw() {
background(0);
poles();
strokeWeight(1);
collisionDetection();
fizzyX+=movementX;
fizzyY+=movementY;
drawFizzy(fizzyX, fizzyY, fizzyRot);
}
这也是一项任务,所以如果这只是一个愚蠢的错误,如果你能指出我正确的方向而不是告诉我答案的话,那就让我很感激。