topical media & game development
actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-CircleSprite.ax
actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-CircleSprite.ax
[swf]
flex
package //com.example.programmingas3.spritearranger
{
//import com.example.programmingas3.geometricshapes.Circle;
public class @ax-actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-CircleSprite extends actionscript_book_SpriteArranger_com_example_programmingas3_spritearranger_GeometricSprite
{
public function @ax-actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-CircleSprite(diam:Number = 100, lColor:Number = 0x000000, fColor:Number = 0xEECCCC)
{
super(diam, lColor, fColor);
this.shapeType = "Circle";
this.geometricShape = new actionscript_book_SpriteArranger_com_example_programmingas3_geometricshapes_Circle(diam);
drawShape();
}
public override function drawShape():void
{
this.graphics.clear();
this.graphics.lineStyle(1.0, this.lineColor, 1.0);
this.graphics.beginFill(this.fillColor, 1.0);
var radius:Number = this.size / 2;
this.graphics.drawCircle(radius, radius, radius);
}
}
}
(C) Æliens
27/08/2009
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.