Java Platform 1.2
Beta 4

Uses of Class
java.awt.geom.AffineTransform

Packages that use AffineTransform
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images.  
java.awt.font Provides classes and interface relating to fonts.  
java.awt.geom Provides the Java 2D classes for defining and performing operations on objects related to two-dimensional geometry.  
java.awt.image Provides classes for creating and modifying images.  
java.awt.image.renderable Provides classes and interfaces for producing rendering-independent images.  
 

Uses of AffineTransform in java.awt
 

Methods in java.awt that return AffineTransform
 AffineTransform Font.getTransform()
          Returns a copy of the transform associated with this font.
abstract  AffineTransform Graphics2D.getTransform()
          Returns the current transform in the Graphics2D state.
abstract  AffineTransform GraphicsConfiguration.getDefaultTransform()
          Returns the default Transform for this configuration.
abstract  AffineTransform GraphicsConfiguration.getNormalizingTransform()
          Returns a Transform that can be concatenated with the default Transform of a GraphicsConfiguration so that 72 units in user space will equal 1 inch in device space.
 

Methods in java.awt with parameters of type AffineTransform
 PaintContext Color.createContext(ColorModel cm, Rectangle r, Rectangle2D r2d, AffineTransform xform, RenderingHints hints)
          Create and return a PaintContext used to generate a solid color pattern.
 Font Font.deriveFont(int style, AffineTransform trans)
          Creates a new Font object by replicating the current Font object with a new style and transform associated with it.
 Font Font.deriveFont(AffineTransform trans)
          Creates a new Font object by replicating the current Font object with a new transform associated with it.
 PaintContext TexturePaint.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints)
          Creates and returns a context used to generate the color pattern.
 PathIterator Shape.getPathIterator(AffineTransform at)
          Return an iterator object that iterates along the boundary of the shape and provides access to the geometry of the outline of the shape.
 PathIterator Shape.getPathIterator(AffineTransform at, double flatness)
          Return an iterator object that iterates along the boundary of the shape and provides access to a flattened view of the geometry of the outline of the shape.
 PaintContext GradientPaint.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints)
          Creates and returns a context used to generate the color pattern.
 PaintContext SystemColor.createContext(ColorModel cm, Rectangle r, Rectangle2D r2d, AffineTransform xform, RenderingHints hints)
          Create and return a PaintContext used to generate a solid color pattern.
 PathIterator Polygon.getPathIterator(AffineTransform at)
          Return an iterator object that iterates along the boundary of the shape and provides access to the geometry of the outline of the shape.
 PathIterator Polygon.getPathIterator(AffineTransform at, double flatness)
          Return an iterator object that iterates along the boundary of the shape and provides access to a flattened view of the geometry of the outline of the shape.
 PaintContext Paint.createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints)
          Create and return a context used to generate the color pattern.
abstract  boolean Graphics2D.drawImage(Image img, AffineTransform xform, ImageObserver obs)
          Draws an image, applying a transform from image space into user space before drawing.
abstract  void Graphics2D.drawRenderedImage(RenderedImage img, AffineTransform xform)
          Draws an RenderedImage, applying a transform from image space into user space before drawing.
abstract  void Graphics2D.drawRenderableImage(RenderableImage img, AffineTransform xform)
          Draws an RenderableImage, applying a transform from image space into user space before drawing.
abstract  void Graphics2D.transform(AffineTransform Tx)
          Composes an AffineTransform object with the transform in this Graphics2D according to the rule last-specified-first-applied.
abstract  void Graphics2D.setTransform(AffineTransform Tx)
          Sets the transform in the current graphics state.
 

Uses of AffineTransform in java.awt.font
 

Methods in java.awt.font that return AffineTransform
 AffineTransform FontRenderContext.getTransform()
          Get the transform which is used to scale typographical points to pixels in this rendering context.
abstract  AffineTransform GlyphVector.getGlyphTransform(int glyphIndex)
          Get the transform of the specified glyph within the GlyphVector.
 AffineTransform TransformAttribute.getTransform()
          Return a copy of the wrapped transform.
 

Methods in java.awt.font with parameters of type AffineTransform
 Shape TextLayout.getOutline(AffineTransform tx, float x, float y)
           
abstract  void GlyphVector.setGlyphTransform(int glyphIndex, AffineTransform newTX)
          Set the transform of the specified glyph within the GlyphVector.
 

Constructors in java.awt.font with parameters of type AffineTransform
FontRenderContext.FontRenderContext(AffineTransform tx, boolean isAntiAliased, boolean usesFractionalMetrics)
           
TransformAttribute.TransformAttribute(AffineTransform transform)
          Wrap the transform.
 

Uses of AffineTransform in java.awt.geom
 

Methods in java.awt.geom that return AffineTransform
static AffineTransform AffineTransform.getTranslateInstance(double tx, double ty)
          Returns a transform representing a translation transformation.
static AffineTransform AffineTransform.getRotateInstance(double theta)
          Returns a transform representing a rotation transformation.
static AffineTransform AffineTransform.getRotateInstance(double theta, double x, double y)
          Returns a transform that rotates coordinates around an anchor point.
static AffineTransform AffineTransform.getScaleInstance(double sx, double sy)
          Returns a transform representing a scaling transformation.
static AffineTransform AffineTransform.getShearInstance(double shx, double shy)
          Returns a transform representing a shearing transformation.
 AffineTransform AffineTransform.createInverse()
          Returns an AffineTransform object representing the inverse transformation.
 

Methods in java.awt.geom with parameters of type AffineTransform
 PathIterator RectangularShape.getPathIterator(AffineTransform at, double flatness)
          Return an iterator object that iterates along the boundary of the shape and provides access to a flattened view of the geometry of the outline of the shape.
 PathIterator Rectangle2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 PathIterator Rectangle2D.getPathIterator(AffineTransform at, double flatness)
          Return an iteration object that defines the boundary of the flattened shape.
 void AffineTransform.setTransform(AffineTransform Tx)
          Sets this transform to a copy of the transform in the indicated AffineTransform object.
 void AffineTransform.concatenate(AffineTransform Tx)
          Concatenates an AffineTransform Tx to this AffineTransform Cx in the most commonly useful way to provide a new user space which is mapped to the former user space by Tx.
 void AffineTransform.preConcatenate(AffineTransform Tx)
          Concatenates an AffineTransform Tx to this AffineTransform Cx in a less commonly used way such that Tx modifies the coordinate transformation relative to the absolute pixel space rather than relative to the existing user space.
 PathIterator Line2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 PathIterator Line2D.getPathIterator(AffineTransform at, double flatness)
          Return an iteration object that defines the boundary of the flattened shape.
 PathIterator CubicCurve2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 PathIterator CubicCurve2D.getPathIterator(AffineTransform at, double flatness)
          Return an iteration object that defines the boundary of the flattened shape.
 PathIterator RoundRectangle2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 void Area.transform(AffineTransform t)
          Transforms the geometry of this Area using the specified transform.
 PathIterator Area.getPathIterator(AffineTransform t)
          Creates a PathIterator for the outline of this Area object.
 PathIterator Area.getPathIterator(AffineTransform t, double f)
          Create a PathIterator for the flattened outline of this Area object.
 Area Area.createTransformedArea(AffineTransform t)
          Creates a new Area from this Area object representing the geometry of the original transformed by the specified AffineTransform.
 void GeneralPath.transform(AffineTransform at)
          Transforms the geometry of this Path using the specified transform.
 Shape GeneralPath.createTransformedShape(AffineTransform at)
          Returns a new transformed Path.
 PathIterator GeneralPath.getPathIterator(AffineTransform at)
          Return an iterator object that iterates along the boundary of the shape and provides access to the geometry of the outline of the shape.
 PathIterator GeneralPath.getPathIterator(AffineTransform at, double flatness)
          Return an iterator object that iterates along the boundary of the flattened shape and provides access to the geometry of the outline of the shape.
 PathIterator Arc2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 PathIterator QuadCurve2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 PathIterator QuadCurve2D.getPathIterator(AffineTransform at, double flatness)
          Return an iteration object that defines the boundary of the flattened shape.
 PathIterator Ellipse2D.getPathIterator(AffineTransform at)
          Return an iteration object that defines the boundary of the shape.
 

Constructors in java.awt.geom with parameters of type AffineTransform
AffineTransform.AffineTransform(AffineTransform Tx)
          Constructs a new AffineTransform representing a copy of another AffineTransform object.
 

Uses of AffineTransform in java.awt.image
 

Methods in java.awt.image that return AffineTransform
 AffineTransform AffineTransformOp.getTransform()
          Returns the transform used by this op.
 

Constructors in java.awt.image with parameters of type AffineTransform
AffineTransformOp.AffineTransformOp(AffineTransform xform, RenderingHints hints)
          Constructs an AffineTransformOp given an affine transform.
 

Uses of AffineTransform in java.awt.image.renderable
 

Methods in java.awt.image.renderable that return AffineTransform
 AffineTransform RenderContext.getTransform()
          Gets the current user-to-device AffineTransform.
 

Methods in java.awt.image.renderable with parameters of type AffineTransform
 void RenderContext.setTransform(AffineTransform newTransform)
          Sets the current user-to-device AffineTransform contained in the RenderContext to a given transform.
 void RenderContext.preConcetenateTransform(AffineTransform modTransform)
          Modifies the current user-to-device transform by prepending another transform.
 void RenderContext.concetenateTransform(AffineTransform modTransform)
          Modifies the current user-to-device transform by appending another transform.
 

Constructors in java.awt.image.renderable with parameters of type AffineTransform
RenderContext.RenderContext(AffineTransform usr2dev, Shape aoi, RenderingHints hints)
          Constructs a RenderContext with a given transform.
RenderContext.RenderContext(AffineTransform usr2dev)
          Constructs a RenderContext with a given transform.
RenderContext.RenderContext(AffineTransform usr2dev, RenderingHints hints)
          Constructs a RenderContext with a given transform and rendering hints.
RenderContext.RenderContext(AffineTransform usr2dev, Shape aoi)
          Constructs a RenderContext with a given transform and area of interest.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.