Daily Creative Coding

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

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

映像のRGBの各層をずらす

/** * Video with Shifted RGB Layers * * @author aa_debdeb * @date 2015/11/09 */ import processing.video.*; Capture camera; PVector rDiff = new PVector(-50, -50); PVector gDiff = new PVector(50, -50); PVector bDiff = new PVector(0, 100); vo…