public class AffineTransform
extends java.lang.Object
Constructor and Description |
---|
AffineTransform() |
AffineTransform(AffineTransform at) |
AffineTransform(double[] ds) |
AffineTransform(int i,
int j,
int k,
int l,
int m,
int n) |
Modifier and Type | Method and Description |
---|---|
void |
concatenate(AffineTransform affineTransform) |
static AffineTransform |
getRotateInstance(double d) |
static AffineTransform |
getScaleInstance(double scale,
double scale2) |
double |
getScaleX() |
double |
getScaleY() |
static AffineTransform |
getShearInstance(double shx,
double shy) |
static AffineTransform |
getTranslateInstance(double tx,
double ty) |
double |
getTranslateX() |
double |
getTranslateY() |
void |
scale(double changex,
double changey) |
void |
setToShear(double coef,
double coef2) |
Point2D |
transform(Point2D src,
Point2D dest) |
void |
translate(double x,
double y) |
public AffineTransform(AffineTransform at)
public AffineTransform(double[] ds)
public AffineTransform(int i, int j, int k, int l, int m, int n)
public AffineTransform()
public double getScaleX()
public double getScaleY()
public double getTranslateX()
public double getTranslateY()
public void translate(double x, double y)
public void concatenate(AffineTransform affineTransform)
public static AffineTransform getScaleInstance(double scale, double scale2)
public void setToShear(double coef, double coef2)
public static AffineTransform getTranslateInstance(double tx, double ty)
public static AffineTransform getShearInstance(double shx, double shy)
public static AffineTransform getRotateInstance(double d)
public void scale(double changex, double changey)