所以我需要重复文本 40 次,我想出了如何做一行一定次数,但是对文本使用相同的过程是行不通的,我尝试过使用不同的代码,但我被卡住了。
任何帮助都会很棒。
我只需要在程序中重复“文本”这个词 40 次。
这是我当前的代码:
void setup() {
size(640, 360);
textFont(createFont("Georgia", 24));
}
void draw() {
background(102);
textAlign(RIGHT);
drawType(width * 0.10);
}
void drawType(float x) {
fill(0);
float y = 35;
int spacing = 50;
int endLine = 640;
while (x <= endLine){
text("text", x, y, 50, 50);
x = x + y + spacing;
}
}
我正在使用语言处理 (processing.org),它是一种 JAVA。