Draw Circle

by mathatelle
♥0 | Line 14 | Modified 2010-01-30 11:18:19 | MIT License
play

ActionScript3 source code

/**
 * Copyright mathatelle ( http://wonderfl.net/user/mathatelle )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/erxg
 */

package {
	import frocessing.display.*;
	public class Main extends F5MovieClip2DBmp {
		public function setup():void {
			background(204);
			noStroke();
			fill(0);
			noLoop();
        }
		public function draw():void {
			ellipse(50, 50, 20, 20);
			//circle(100, 50, 10);
        }
	}
}