Daily Creative Coding

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

2017-01-13から1日間の記事一覧

円の影

/** * shadow of circle * * @author aa_debdeb * @date 2017/01/13 */ void setup(){ size(640, 640); noStroke(); background(255, 255, 250); } void draw(){ translate(width / 2, height / 2); rotate(PI / 4); for(int i = 0; i < 2; i++){ float angl…