Daily Creative Coding

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

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

二色のメタボール

/** * two-color metaballs * * @author aa_debdeb * @date 2016/08/07 */ int num = 20; ArrayList<Particle> particles; int cellNum = 200; float cellSize = 2; float[][] cells; color c1 = color(255, 140, 0); color c2 = color(0, 242, 255); void setup(){ si</particle>…