Daily Creative Coding

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

2015-11-19から1日間の記事一覧

レーザービーム

/** * Laser Beam * * @author aa_debdeb * @date 2015/11/19 */ float[] startXs; float[] startYs; void setup(){ size(500, 500); smooth(); frameRate(45); startXs = new float[4]; startYs = new float[4]; for(int i = 0; i < 4; i++){ startXs[i] = …