Daily Creative Coding

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

2015-11-24から1日間の記事一覧

カメラ画像を三次元の色付きボックスで表現する.

飛び出る3Dみたい. /** * Color Box Image * * @author aa_debdeb * @date 2015/11/24 * */ import processing.video.*; Capture camera; void setup(){ size(640, 480, P3D); smooth(); camera = new Capture(this, width, height); camera.start(); } voi…