Daily Creative Coding

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

2016-03-28から1日間の記事一覧

カラーパレット

/** * color mosaic * * @author aa_debdeb * @date 2016/03/28 */ void setup(){ size(500, 500); noStroke(); mousePressed(); } void draw(){ } void mousePressed(){ float hcenter, hwidth, smin, smax, bmin, bmax; hcenter = random(360); hwidth = r…