import processing.pdf.*;
PFont font;
void setup() {
size(900, 900, PDF, “WMNTL_2”);
pixelDensity(2);
background(255);
font = createFont(“Monaco”, 28);
textFont(font);
fill(50, 200, 50);
}
size(900, 900, PDF, “WMNTL_2”);
pixelDensity(2);
background(255);
font = createFont(“Monaco”, 28);
textFont(font);
fill(50, 200, 50);
}
void draw() {
background(0);
for(int i = – 240; i < 600; i += 80) {
pushMatrix();
translate(10, 20);
rotate(radians(340));
String s = “wmntl”;
text(s, i, i-230, 90, 150);
text(s, i, i-100, 90, 150);
text(s, i, i+30, 90, 150);
text(s, i, i+160, 90, 150);
text(s, i, i+290, 90, 150);
text(s, i, i+420, 90, 150);
text(s, i, i+550, 90, 150);
text(s, i, i+680, 90, 150);
popMatrix();
}
println(“finished”);
exit();
}
background(0);
for(int i = – 240; i < 600; i += 80) {
pushMatrix();
translate(10, 20);
rotate(radians(340));
String s = “wmntl”;
text(s, i, i-230, 90, 150);
text(s, i, i-100, 90, 150);
text(s, i, i+30, 90, 150);
text(s, i, i+160, 90, 150);
text(s, i, i+290, 90, 150);
text(s, i, i+420, 90, 150);
text(s, i, i+550, 90, 150);
text(s, i, i+680, 90, 150);
popMatrix();
}
println(“finished”);
exit();
}