Daily Creative Coding

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

2016-04-18から1日間の記事一覧

球の表面でのパーティクルの移動

3D

/** * surface on sphere * * @author aa_debdeb * @date 2016/04/18 */ float radious = 250; ArrayList<Particle> particles; PVector rNoise1, rNoise2; float nScale = 3.4; float maxVel = PI / 2048; float velStep = PI / 20480; void setup(){ size(640, 640, </particle>…