Daily Creative Coding

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

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

ortho() vs perspective()

3D

/** * perspective vs orthographic * * @author aa_debdeb * @date 2016/05/09 */ boolean isPerspective; void setup(){ size(500, 500, P3D); isPerspective = true; fill(0, 255, 157); stroke(128); } void draw(){ lights(); background(255, 228, 225…