topical media & game development

talk show tell print

actionscript-book-GeometricShapes-com-example-programmingas3-geometricshapes-Square.ax

actionscript-book-GeometricShapes-com-example-programmingas3-geometricshapes-Square.ax [swf] flex


  package  
  {
          public class @ax-actionscript-book-GeometricShapes-com-example-programmingas3-geometricshapes-Square extends actionscript_book_GeometricShapes_com_example_programmingas3_geometricshapes_RegularPolygon 
          {
              // Inherits the numSides and sideLength properties from RegularPolygon
                          
                  public function @ax-actionscript-book-GeometricShapes-com-example-programmingas3-geometricshapes-Square(len:Number = 100):void
                  {
                          super(len, 4);
                  }
                  
                  public override function getArea():Number
                  {
                      return (this.sideLength * this.sideLength);
                  }
                  
                  // Inherits the getPerimeter() method from RegularPolygon
                  
                  // Inherits the getSumOfAngles() method from RegularPolygon
                  
                  public override function describe():String
                  {
                      // starts with the name of the shape, then delegates the rest
                      // of the description work to the RegularPolygon superclass
                      var desc:String = "This shape is a @ax-actionscript-book-GeometricShapes-com-example-programmingas3-geometricshapes-Square.\n";
                      desc += super.describe();
                      
                      return desc;
                  }
          }
  }


(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.