org.apache.batik.ext.awt.g2d |
Abstract Graphics2D Package
Provides an API for subclassing the java.awt.Graphics2D
class in order to translate Java 2D primitives into another graphic
format.
|
Java Source File Name | Type | Comment |
AbstractGraphics2D.java | Class | This extension of the java.awt.Graphics2D abstract class
is still abstract, but it implements a lot of the Graphics2D
method in a way that concrete implementations can reuse.
This class uses a GraphicContext to store the state of
its various attributes that control the rendering, such as the
current Font, Paint or clip.
Concrete implementations can focus on implementing the rendering
methods, such as drawShape. |
DefaultGraphics2D.java | Class | This concrete implementation of AbstractGraphics2D is a
simple help to programmers to get started with their own
implementation of Graphics2D. |
GraphicContext.java | Class | |
TransformStackElement.java | Class | Contains a description of an elementary transform stack element,
such as a rotate or translate. |
TransformType.java | Class | Enumeration for transformation types. |