AffineTransform |
AffineTransform.concatenate(AffineTransform Tx) |
|
AffineTransform |
AffineTransform.getCopy() |
|
AffineTransform |
AffineTransform.getInverse() |
|
AffineTransform |
AffineTransform.invert() |
|
AffineTransform |
AffineTransform.preConcatenate(AffineTransform Tx) |
|
AffineTransform |
AffineTransform.quadrantRotate(int numquadrants) |
Adds a rotation by an integer multiple of 90deg to the transformation
matrix of this AffineTransform .
|
AffineTransform |
AffineTransform.quadrantRotate(int numquadrants,
double anchorx,
double anchory) |
Adds a rotation by an integer multiple of 90deg around the Point
specified by the given x and y coordinates to the transformation matrix
of this AffineTransform .
|
AffineTransform |
AffineTransform.rotate(double theta) |
Adds a rotation with the given angle (in radians) to the transformation
matrix of this AffineTransform .
|
AffineTransform |
AffineTransform.rotate(double vecx,
double vecy) |
|
AffineTransform |
AffineTransform.rotate(double theta,
double anchorx,
double anchory) |
Adds a rotation with the given angle (in radians) around the
Point specified by the given x and y coordinates to the
transformation matrix of this AffineTransform .
|
AffineTransform |
AffineTransform.rotate(double vecx,
double vecy,
double anchorx,
double anchory) |
|
AffineTransform |
AffineTransform.scale(double sx,
double sy) |
Adds an x and y scaling to the transformation matrix of this
AffineTransform .
|
AffineTransform |
AffineTransform.setToIdentity() |
Sets the transformation matrix of this AffineTransform to the
identity matrix.
|
AffineTransform |
AffineTransform.setToQuadrantRotation(int numquadrants) |
Sets the transformation matrix of this AffineTransform to a pure
rotation matrix where the rotation angle is an integer multiple of 90deg.
|
AffineTransform |
AffineTransform.setToQuadrantRotation(int numquadrants,
double anchorx,
double anchory) |
Sets the transformation matrix of this AffineTransform to a pure
rotation and translation matrix where the rotation angle is an integer
multiple of 90deg and the rotation is around the Point specified
by the given x and y coordinates.
|
AffineTransform |
AffineTransform.setToRotation(double theta) |
Sets the transformation matrix of this AffineTransform to a pure
rotation matrix by the given angle specified in radians.
|
AffineTransform |
AffineTransform.setToRotation(double vecx,
double vecy) |
Sets the transformation matrix of this AffineTransform to a pure
rotation matrix.
|
AffineTransform |
AffineTransform.setToRotation(double theta,
double anchorx,
double anchory) |
Sets the transformation matrix of this AffineTransform to a pure
rotation and translation matrix.
|
AffineTransform |
AffineTransform.setToRotation(double vecx,
double vecy,
double anchorx,
double anchory) |
Sets the transformation matrix of this AffineTransform to a pure
rotation and translation matrix.
|
AffineTransform |
AffineTransform.setToScale(double sx,
double sy) |
Sets the transformation matrix of this AffineTransform to a pure
scaling matrix.
|
AffineTransform |
AffineTransform.setToShear(double shx,
double shy) |
Sets the transformation matrix of this AffineTransform to a pure
shearing matrix.
|
AffineTransform |
AffineTransform.setToTranslation(double tx,
double ty) |
Sets the transformation matrix of this AffineTransform to a pure
translation matrix that translates Point s by the given x and y
values.
|
AffineTransform |
AffineTransform.setTransform(double m00,
double m10,
double m01,
double m11,
double m02,
double m12) |
Sets the respective values of the transformation matrix of this
AffineTransform to the supplied ones.
|
AffineTransform |
AffineTransform.setTransform(AffineTransform Tx) |
|
AffineTransform |
AffineTransform.shear(double shx,
double shy) |
Adds an x and y shearing to the transformation matrix of this
AffineTransform .
|
AffineTransform |
AffineTransform.translate(double tx,
double ty) |
Sets the translation values of the x and y coordinates of the
transformation matrix of this AffineTransform .
|