答案 0 :(得分:0)
这应该更干净(而且效率更高)。
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noLoop();
}
function draw() {
translate(width /2, height /2);
stroke(255);
strokeWeight(1);
line(0, height, 0, -height)
line(width, 0, -width, 0)
y = -250
x = 0
while (y != 0) {
y += 50
x -= 50
line(0, y, x, 0)
line(0, -y, -x, 0)
line(0, -y, x, 0)
line(0, y, -x, 0)
}
}