Daily Creative Coding

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

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

二点透視図法

/** * two-point perspective * * @author aadebdeb * @date 2017/02/21 */ function setup() { createCanvas(windowWidth, windowHeight); background(255); stroke(200); strokeWeight(1); frameRate(1); } function draw() { var w = random(width / 8, w…