- 准备工作
- 这一步只是我强迫症犯了哈,这个随意,画几根线而已。每一小格10个像素,中格50,大格100像素
-
1 void setup() 2 { 3 size(1280,720); 4 } 5 6 void draw() 7 { 8 background(0,0,0); 9 //translate(width/2,height/2); 10 Aix(1,50,width,height,40); 11 Aix(2,100,width,height,60); 12 Aix(1,10,5,5,100); 13 Aix(2,50,7,7,100); 14 stroke(150); 15 strokeWeight(3); 16 line(-width,0, width,0); 17 line(0,-height, 0,height); 18 19 DrawText(); 20 } 21 22 float weight = 3; 23 float del = 100; 24 float lonW = 10; 25
[Processing]在画布上写文本
最新推荐文章于 2023-07-08 20:07:25 发布
本文介绍了如何使用Processing库在画布上显示文本,包括设置字体大小、对齐方式、行高以及测量文本宽度。通过示例代码展示了如何创建网格并打印不同格式的文本。
摘要由CSDN通过智能技术生成