package org.aswing.graphics

BitmapBrush

Encapsulate the fill parameter for flash.display.Graphics.beginBitmapFill() @see http://livedocs.macromedia.com/flex/2/langref/flash/display/Graphics.html#beginBitmapFill() @author n0rthwood

GradientBrush

GradientBrush encapsulate the fill paramters for flash.display.Graphics.beginGradientFill() @see http://livedocs.macromedia.com/flex/2/langref/flash/display/Graphics.html#beginGradientFill() @author paling

GradientPen

GradientPen to draw Gradient lines. @see org.aswing.graphics.Graphics2D @see org.aswing.graphics.IPen @see org.aswing.graphics.Pen @see http://livedocs.macromedia.com/flex/2/langref/flash/display/Graphics.html#lineGradientStyle() @author n0rthwood

Graphics2D

Encapsulate and enhance flash.display.graphics drawing API.
To draw with this API, you need to create a pen. To fill an area with this API, you need to create a brush.
You can find sampe usage of this api in the test package which will come with the source package.

Here is an sample on how to use the org.aswing.grphics package to draw stuff

IBrush

Brush to fill a closed area.
Use it with a org.aswing.graphics.Graphics2D instance @author paling

IPen

Pen to draw lines.
Use it with a org.aswing.graphics.Graphics2D instance @author n0rthwood

Pen

Pen encapsulate normal lineStyle properties.
You can use pen to draw an ordinary shape. To draw gradient lines, refer to org.aswing.graphics.GradientPen

SolidBrush

SolidBrush encapsulate fill parameters for flash.display.Graphics.beginFill() @see http://livedocs.macromedia.com/flex/2/langref/flash/display/Graphics.html#beginFill() @author paling