Circles
♥2 |
Line 11 |
Modified 2011-04-20 01:41:03 |
MIT License
archived:2017-03-05 05:21:33
ActionScript3 source code
/**
* Copyright shapevent ( http://wonderfl.net/user/shapevent )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/yxRX
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
graphics.lineStyle(0, 0x000000);
graphics.drawCircle(250, 250, 100);
graphics.drawCircle(250, 250, 90);
graphics.drawCircle(250, 250, 80);
}
}
}