クリスマス背景
forked from 変化をつけて円を並べる (diff: 28)
クリスマス背景
ActionScript3 source code
/**
* Copyright mek099 ( http://wonderfl.net/user/mek099 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/cZkO
*/
// forked from shmdmoto's 変化をつけて円を並べる
package
{
import frocessing.display.F5MovieClip2D;
/**
* 円を敷き詰める
* @author shmdmoto
*/
public class GraphicExample extends F5MovieClip2D
{
public function setup() : void
{
background(0,0,0)
strokeWeight(3);
stroke(255,255,255);
line(0,50,500,50);
line(0,150,500,150);
line(0,250,500,250);
line(0,350,500,350);
line(0,450,500,450);
strokeWeight(6);
stroke(0,60,0);
line(50,0,50,500);
line(150,0,150,500);
line(250,0,250,500);
line(350,0,350,500);
line(450,0,450,500);
strokeWeight(10);
stroke(90,0,0);
line(0,100,500,100);
line(0,200,500,200);
line(0,300,500,300);
line(0,400,500,400);
line(0,500,500,500);
}
}
}