Daily Creative Coding

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

2016-01-23から1日間の記事一覧

マスクで円を虫食いにする

/** * Uncertain Circle * * @author aa_debdeb * @date 2016/01/23 */ float globalRadious = 200; PGraphics mask; ArrayList<Hole> holes; void setup(){ size(500, 500); smooth(); frameRate(30); noStroke(); mask = createGraphics(width, height); holes =</hole>…