Daily Creative Coding

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

ネットワーク

ブーリアンネットワーク

/** * 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];…