flash on 2010-3-8
♥0 |
Line 9 |
Modified 2010-03-08 14:36:56 |
MIT License
archived:2017-03-20 04:09:49
ActionScript3 source code
/**
* Copyright cac ( http://wonderfl.net/user/cac )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/c58r
*/
package {
import flash.display.Sprite;
public class DrawCircle extends Sprite {
public function DrawCircle(){
// write as3 code here..
graphics.lineStyle(10,0xffd700)
graphics.drawCircle(200,200,50)
}
}
}