あきっち

Processingで作ったやつを載せていくブログ

あきっち

Processingで作ったやつを載せていくブログ

最近の記事

Processing 素材1

creativecodingで使えそうな素材ができました。保存しておきます。 //AKITCH_codefloat step=0;void setup() { size(900, 900); background(0);}void draw() { noFill(); translate(width/2, height/2); for (float i=0; i<step/5; i=i+PI/2) { stroke(255); rotate(i); } rect(0

    • rotate()を利用した作品 «Processing»

      //Processing_code_akitch_AKM_@godpotbot_Twitterfloat x, y;float bar_x;void setup() { size(900, 900);}void draw() { background(0); x=width/2; y=height/2; function_1(); bar_function();}void bar_function() { if (mousePressed) { //mouse押すと動くよ

    Processing 素材1