/**@class android.graphics.drawable.shapes.ArcShape @extends android.graphics.drawable.shapes.RectShape Creates an arc shape. The arc shape starts at a specified angle and sweeps clockwise, drawing slices of pie. <p> The arc can be drawn to a {@link Canvas} with its own {@link #draw(Canvas, Paint)} method, but more graphical control is available if you instead pass the ArcShape to a {@link android.graphics.drawable.ShapeDrawable}. */ var ArcShape = { /** @return {Number} the angle (in degrees) where the arc begins */ getStartAngle : function( ) {}, /** @return {Number} the sweep angle (in degrees) */ getSweepAngle : function( ) {}, /** */ draw : function( ) {}, /** */ getOutline : function( ) {}, /** */ clone : function( ) {}, /** */ equals : function( ) {}, /** */ hashCode : function( ) {}, };