美文网首页
08 教孩子学编程 随机圆形动画

08 教孩子学编程 随机圆形动画

作者: Mack老师 | 来源:发表于2020-05-05 15:55 被阅读0次

    int x=100;

    int direction=1;

    void setup(){

      size(640,640);

      background(255);

    }

    void draw(){

      //background(255);

      fill(255,0,255,50);

      ellipse(random(width),random(height),50,50);

    }

    void setup(){

      size(640,640);

      background(255);

    }

    void draw(){

      //background(255);

      fill(255,10);

      rect(0,0,640,640);

      fill(255,0,255,100);

      ellipse(random(width),random(height),50,50);

    }

    相关文章

      网友评论

          本文标题:08 教孩子学编程 随机圆形动画

          本文链接:https://www.haomeiwen.com/subject/zyimghtx.html