円を書いてみるテスト(flash on 2009-8-17)
♥0 |
Line 13 |
Modified 2009-08-19 17:01:59 |
MIT License
archived:2017-03-20 15:25:16
ActionScript3 source code
/**
* Copyright krogue ( http://wonderfl.net/user/krogue )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/xdzU
*/
package {
import flash.display.Sprite;
import flash.display.Graphics;
public class FirstCircle extends Sprite {
public function FirstCircle() {
var s:Sprite = new Sprite();
s.graphics.beginFill(0xFF0000);
s.graphics.drawCircle(80, 80, 60);
s.graphics.endFill();
addChild(s);
}
}
}