Daily Creative Coding

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

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

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

/** * Box Image * * @author aa_debdeb * @date 2015/11/23 * */ import processing.video.*; Capture camera; void setup(){ size(640, 480, P3D); smooth(); camera = new Capture(this, width, height); camera.start(); } void draw(){ background(255)…