Daily Creative Coding

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

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

二重螺旋

3D

/** * double helix * * @author aa_debdeb * @date 2016/09/07 */ void setup(){ size(480, 640, P3D); } void draw(){ background(255); translate(width / 2, 0, 0); rotateY(frameCount * 0.05); fill(152, 251, 152); stroke(152, 251, 152); float h =…