马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
- import gifAnimation.*;
- GifMaker gifExport;
- void setup(){
- size(500,500);
- smooth();
- frameRate(10);
- //gifExport = new GifMaker(this,"aa.gif");
- //gifExport.setRepeat(0);
- }
- void draw(){
- background(255);
- float s = frameCount%20;
- strokeWeight(s*2);
- stroke(50,119,206,255-s*s);
- ellipse(mouseX,mouseY,20*s,20*s);
- //gifExport.setDelay(1000/10);
- //gifExport.addFrame();
- }
复制代码
|