Graphics03 178ep3 forked:0favorite:6lines:29license : MIT License modified : 2009-12-20 23:56:53 Embed Tweet package { import flash.display.Shape; import flash.display.Sprite; public class SampleGraphics extends Sprite { public function SampleGraphics() { var i:uint=0; var q:Number=0; for(i=0; i<4; i++) { var shape:Shape = addChild(new Shape())as Shape; shape.x = shape.y = 233.5; shape.rotation = i*90; var _x:Number=100; var _y:Number=0; for(q=0; q<100; q++) { shape.graphics.lineStyle(1,0,0.4); shape.graphics.drawEllipse(0,0,_x,_y); shape.graphics.endFill(); _x-=2; _y+=2; } } } } } Code Fullscreen Preview Fullscreen hacker_fimwf.. Nyarineko uwi SetzerWolf : graphicscatavendo feito com graphics show nogud : sin cos _Andros_ : cossin cos graphics sin rotation addChild uint Sprite Number