Daily Creative Coding

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

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

亀甲模様

/** * hexagonal pattern * * @author aa_debdeb * @date 2016/07/03 */ float e = 15.0; void setup(){ size(640, 480); mousePressed(); } void draw(){ } void mousePressed(){ color c1 = color(random(255), random(255), random(255)); color c2 = col…