Daily Creative Coding

元「30 min. Processing」。毎日、Creative Codingします。

2015-08-20から1日間の記事一覧

Random Shapes

/** * Random Shapes * * This sketch draws random 300 shapes (ellipse, quadrangle or triangle). * * @author aa_debdeb * @date 2015/08/20 * */ void setup(){ size(300, 300); noStroke(); smooth(); background(255, 255, 255); for(int i = 0; i < …