Daily Creative Coding

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

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

重なるCMYの円

/** * interlapping CMY circles * * @author aadebdeb * @date 2017/02/19 */ var colors; var isDarkest = true; function setup() { createCanvas(windowWidth, windowHeight); frameRate(30); noStroke(); colors = [ color(255, 255, 0), color(255, 0,…