GNU Classpath (0.95) | |
Frames | No Frames |
Methods with parameter type java.awt.geom.AffineTransform | |
PaintContext | Color.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) Returns a paint context, used for filling areas of a raster scan with
this color. |
PaintContext | GradientPaint.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) Returns the PaintContext used to generate the color pattern.
|
PaintContext | Paint.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) Create the context necessary for performing the color pattern generation.
|
PaintContext | SystemColor.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) Returns a paint context, used for filling areas of a raster scan with
the current value of this system color. |
PaintContext | TexturePaint.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) Creates the context used to paint the texture.
|
Font | Produces a new Font based on the current font, adjusted to a
new style and subjected to a new affine transformation.
|
Font | Produces a new Font based on the current font, subjected
to a new affine transformation.
|
boolean | |
void | |
void | |
PathIterator | Return an iterator along the shape boundary. |
PathIterator | Return an iterator along the shape boundary. |
PathIterator | Return an iterator along the flattened version of the shape boundary.
|
PathIterator | Return an iterator along the flattened version of the shape boundary.
|
void | Sets the current transform. |
void | Sets the current transform to a concatenation of transform
and the existing transform.
|
Methods with return type java.awt.geom.AffineTransform | |
AffineTransform | Returns a transform that maps user coordinates to device coordinates. |
AffineTransform | Returns a transform that maps user coordinates to device coordinates. |
AffineTransform | Returns a copy of the affine transformation this font is currently
subject to, if any.
|
AffineTransform | Returns the current transform.
|
Constructors with parameter type java.awt.geom.AffineTransform | |
Methods with parameter type java.awt.geom.AffineTransform | |
void | |
void | |
void | |
void | |
void |
Methods with return type java.awt.geom.AffineTransform | |
AffineTransform |
Constructors with parameter type java.awt.geom.AffineTransform | |
FontRenderContext.FontRenderContext(AffineTransform tx, boolean isAntiAliased, boolean usesFractionalMetrics) Construct a new FontRenderContext .
| |
Creates a new attribute that contains a copy of the given transform.
|
Methods with parameter type java.awt.geom.AffineTransform | |
Shape | |
void |
Methods with return type java.awt.geom.AffineTransform | |
AffineTransform | GlyphVector.getGlyphTransform(int glyphIndex) |
AffineTransform | Retrieves the affine transform for scaling typographical points
to raster pixels.
|
AffineTransform | Returns a copy of the transform contained by this attribute.
|
Constructors with parameter type java.awt.geom.AffineTransform | |
Construct AffineTransformOp with the given xform and interpolationType.
| |
Construct AffineTransformOp with the given xform and rendering hints.
|
Methods with return type java.awt.geom.AffineTransform | |
AffineTransform | Returns transform used in transformation between source and destination
image.
|
Constructors with parameter type java.awt.geom.AffineTransform | |
Create a new transform which copies the given one.
|
Methods with parameter type java.awt.geom.AffineTransform | |
void | Set this transform to the result of performing the original version of
this followed by tx. |
Area | Returns a new Area equal to this one, transformed
by the AffineTransform at.
|
Shape | Creates a transformed version of the path.
|
PathIterator | Returns an iterator over this arc, with an optional transformation.
|
PathIterator | Returns a PathIterator object defining the contour of this Area,
transformed by at.
|
PathIterator | |
PathIterator | Returns a PathIterator object corresponding to the ellipse.
Note: An ellipse cannot be represented exactly in PathIterator
segments, the outline is thefore approximated with cubic
Bezier segments.
|
PathIterator | Creates a PathIterator for iterating along the segments of the path.
|
PathIterator | Return a path iterator, possibly applying a transform on the result. |
PathIterator | Return an iterator along the shape boundary. |
PathIterator | Return an iterator along the shape boundary. |
PathIterator | Return a new path iterator which iterates over this rectangle.
|
PathIterator | Returns a flattened PathIterator object defining the contour of this
Area, transformed by at and with a defined flatness.
|
PathIterator | |
PathIterator | Creates a new FlatteningPathIterator for the path
|
PathIterator | Return a flat path iterator, possibly applying a transform on the result.
|
PathIterator | Return an iterator along the flattened version of the shape boundary.
|
PathIterator | Return an iterator along the shape boundary. |
PathIterator | Return an iterator along the shape boundary. |
void | Set this transform to the result of performing tx followed by the
original version of this. |
void | Set this transform to a copy of the given one.
|
void | Transforms this area by the AffineTransform at.
|
void | Applies a transform to the path.
|
Methods with return type java.awt.geom.AffineTransform | |
AffineTransform | Returns a transform, which if concatenated to this one, will result in
the identity transform. |
AffineTransform | AffineTransform.getRotateInstance(double theta) Returns a rotation transform. |
AffineTransform | AffineTransform.getRotateInstance(double theta, double x, double y) Returns a rotation transform about a point. |
AffineTransform | AffineTransform.getScaleInstance(double sx, double sy) Returns a scaling transform:
[ sx 0 0 ] [ 0 sy 0 ] [ 0 0 1 ] |
AffineTransform | AffineTransform.getShearInstance(double shx, double shy) Returns a shearing transform (points are shifted in the x direction based
on a factor of their y coordinate, and in the y direction as a factor of
their x coordinate):
[ 1 shx 0 ] [ shy 1 0 ] [ 0 0 1 ] |
AffineTransform | AffineTransform.getTranslateInstance(double tx, double ty) Returns a translation transform:
[ 1 0 tx ] [ 0 1 ty ] [ 0 0 1 ] |
GNU Classpath (0.95) |