Daily Creative Coding

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

2015-08-26から1日間の記事一覧

Sine Wave

/** * Sine Wave * * @author aa_debdeb * @date 2015/08/26 */ float amplitude = 200; float xStep = 0.1; float currentAngle = 0.0; float angleSpeed = 0.5; float angleStep = 2.0*PI / 512; void setup(){ size(500, 500); smooth(); noFill(); backg…