Draw Circle
♥0 |
Line 14 |
Modified 2010-01-30 11:18:19 |
MIT License
archived:2017-03-20 04:59:02
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);
}
}
}