深蓝创客

2021年7月2日

Processing典例——雷达

摘要: 1 int offset=10; 2 float x, y; 3 float r=300; 4 float a=0; 5 void setup() 6 { 7 size(600,600); 8 background(0); 9 } 10 11 12 void draw() 13 { 14 backg 阅读全文

posted @ 2021-07-02 16:53 深蓝创客 阅读(250) 评论(0) 推荐(0) 编辑

Processing典例——3D地球

摘要: void setup() { fullScreen(P3D); // 全屏 textSize(32); // 文字大小 } float timer = 0; void draw() { background(0); //背景 stroke(#74F599); // 绿色边框 noFill(); // 阅读全文

posted @ 2021-07-02 11:11 深蓝创客 阅读(192) 评论(0) 推荐(0) 编辑

导航