Daily Creative Coding

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

2016-02-10から1日間の記事一覧

水面から浮き上がる物体

/** * Object Coming to The Surface * * @author aa_debdeb * @date 2016/02/10 */ float position; float speed = -5; float radious = 150; float surface = 400; void setup(){ size(500, 500); frameRate(30); smooth(); stroke(128); strokeWeight(5);…