📜  textfont() code.org 中的选项 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:55.882000             🧑  作者: Mango

代码示例1
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);