Daily Creative Coding

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

2015-12-28から1日間の記事一覧

ブーリアンネットワーク

/** * Boolean Network * * @author aa_debdeb * @date 2015/12/28 */ int MAX_POINT = 2000; PVector positions[]; boolean states[]; boolean hasLinks[][]; void setup(){ size(500, 500); smooth(); frameRate(10); positions = new PVector[MAX_POINT];…