forked from: flash on 2010-1-14
forked from flash on 2010-1-14 (diff: 2)
ActionScript3 source code
/**
* Copyright ieha ( http://wonderfl.net/user/ieha )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/aPAn
*/
// forked from ieha's flash on 2010-1-14
package {
import flash.display.Sprite;
public class DrawCircle extends Sprite {
public function DrawCircle() {
graphics.lineStyle(10, 0xFFDD00, 1);
graphics.drawRoundRect(100, 100, 50, 50, 5, 5);
}
}
}