Skip to content

Instantly share code, notes, and snippets.

@jonathantorres
Created February 4, 2010 21:00
Show Gist options
  • Save jonathantorres/295101 to your computer and use it in GitHub Desktop.
Save jonathantorres/295101 to your computer and use it in GitHub Desktop.
var circle2:Sprite = new Sprite();
circle2.graphics.beginFill(0x00FF00, 1);
circle2.graphics.drawCircle(0, 0, 20);
circle2.graphics.endFill();
var circle3:Sprite = new Sprite();
circle3.graphics.beginFill(0x0000FF, 1);
circle3.graphics.drawCircle(0, 0, 10);
circle3.graphics.endFill()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment