📅  最后修改于: 2022-03-11 14:55:55.882000             🧑  作者: Mango
1// Various fonts
textSize(18);
text("Hello World", 100, 75);
textFont("Arial");
// Same as default font
text("Hello World", 100, 125);
textFont("Georgia");
text("Hello World", 100, 175);
textFont("Times New Roman");
text("Hello World", 100, 225);
textFont("Courier New");
text("Hello World", 100, 275);