Daily Creative Coding

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

2016-09-27から1日間の記事一覧

円環状の全結合ネットワーク

/** * fully connected circular network * * @author aa_debdeb * @date 2016/09/27 */ void setup(){ size(640, 640); } void draw(){ background(230); translate(width / 2, height / 2); float alpha = map(mouseY, 0, height, 0, 255); stroke(20, alp…