美文网首页
03 processing 教孩子编程画方形

03 processing 教孩子编程画方形

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

    size(600,400);

    background(255);

    fill(0,0,255,100);

    rect(10,10,285,185);

    rect(305,10,285,185);

    size(600,400);

    background(255);

    fill(0,0,255,100);

    stroke(255);

    strokeWeight(20);

    rect(0,0,600,400);

    strokeWeight(10);

    rect(50,50,500,300);

    strokeWeight(5);

    rect(100,100,400,200);

    strokeWeight(3);

    rect(150,150,300,100);

    相关文章

      网友评论

          本文标题:03 processing 教孩子编程画方形

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