ArcShapepublic class ArcShape extends RectShape Creates an arc shape. The arc shape starts at a specified
angle and sweeps clockwise, drawing slices of pie.
The arc can be drawn to a Canvas with its own draw() method,
but more graphical control is available if you instead pass
the ArcShape to a {@link android.graphics.drawable.ShapeDrawable}. |
Fields Summary |
---|
private float | mStart | private float | mSweep |
Constructors Summary |
---|
public ArcShape(float startAngle, float sweepAngle)ArcShape constructor.
mStart = startAngle;
mSweep = sweepAngle;
|
|