Daily Creative Coding

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

2017-02-14から1日間の記事一覧

blendMode(DIFFERENCE)で干渉する縞

/** * interference disc * * @author aadebdeb * @date 2017/02/14 */ function setup() { createCanvas(windowWidth, windowHeight); mousePressed(); } function mousePressed() { blendMode(BLEND); background(random(255), random(255), random(255));…