Generated by
JDiff

Class com.itextpdf.kernel.geom.AffineTransform

Documentation changed from old to new.

Changed Constructors
AffineTransform( AffineTransform) Documentation changed from old to new.
Will create a new AffineTransform instance with the values provided from the original AffineTransform instance.
AffineTransform( double, double , double , double , double , double ) Documentation changed from old to new.
Create an AffineTransform instance with the values provided.
AffineTransform( double[]) Documentation changed from old to new.
Create an AffineTransform instance with the values provided.
AffineTransform( float[]) Documentation changed from old to new.
Create an AffineTransform instance with the values provided.
AffineTransform( void) Documentation changed from old to new.
Create an empty AffineTransform instance.
 

Changed Methods
void  concatenate( AffineTransform) Documentation changed from old to new.
Multiply matrix of two AffineTransform objects
AffineTransform  createInverse() Documentation changed from old to new.
Creates a new AffineTransform object that is invert of this AffineTransform object.
boolean  equals( Object) Documentation changed from old to new.
Compares this AffineTransform with the specified Object.
double  getDeterminant() Documentation changed from old to new.
Gets the determinant of the matrix representation of this AffineTransform.
AffineTransform  getScaleInstance( double, double ) Documentation changed from old to new.
Get a new AffineTransform instance representing a scale over the passed values
double  getScaleX() Documentation changed from old to new.
Gets the scale factor of the x-axis.
double  getScaleY() Documentation changed from old to new.
Gets the scale factor of the y-axis.
AffineTransform  getShearInstance( double, double ) Documentation changed from old to new.
Get a new AffineTransform instance representing a shear over the passed values
double  getShearX() Documentation changed from old to new.
Gets the shear factor of the x-axis.
double  getShearY() Documentation changed from old to new.
Gets the shear factor of the y-axis.
AffineTransform  getTranslateInstance( double, double ) Documentation changed from old to new.
Get a new AffineTransform instance representing a translation over the passed values
double  getTranslateX() Documentation changed from old to new.
Gets translation factor of the x-axis.
double  getTranslateY() Documentation changed from old to new.
Gets translation factor of the y-axis.
int  hashCode() Documentation changed from old to new.
Returns a hash code value for the object.
boolean  isIdentity() Documentation changed from old to new.
Gets whether this AffineTransform is an identity transformation.
void  preConcatenate( AffineTransform) Documentation changed from old to new.
Multiply matrix of two AffineTransform objects
void  setToIdentity() Documentation changed from old to new.
Sets this AffineTransform to the identity transformation.
void  setToScale( double, double ) Documentation changed from old to new.
Sets this AffineTransform to represent a scale transformation.
void  setToShear( double, double ) Documentation changed from old to new.
Sets this AffineTransform to represent a shear transformation.
void  setToTranslation( double, double ) Documentation changed from old to new.
Sets this AffineTransform to represent a translation transformation.
Point  deltaTransform( Point, Point ) Documentation changed from old to new.
Performs the transformation on the source point and stores the result in the destination point.
void  deltaTransform( double[], int , double[] , int , int ) Documentation changed from old to new.
Performs the delta transformation on the source array of points and stores the result in the destination array of points.
void  getMatrix( double[]) Documentation changed from old to new.
Fills the matrix parameter with the values of this AffineTransform instance.
void  getMatrix( float[]) Documentation changed from old to new.
Fills the matrix parameter with the values of this AffineTransform instance.
AffineTransform  getRotateInstance( double, double , double ) Documentation changed from old to new.
Get an affine transformation representing a counter-clockwise rotation over the passed angle, using the passed point as the center of rotation
Point  inverseTransform( Point, Point ) Documentation changed from old to new.
Performs the inverse transformation on the source point and stores the result in the destination point.
void  inverseTransform( double[], int , double[] , int , int ) Documentation changed from old to new.
Performs the inverse transformation on the source array of points and stores the result in the destination array of points.
void  inverseTransform( float[], int , float[] , int , int ) Documentation changed from old to new.
Performs the inverse transformation on the source array of points and stores the result in the destination array of points.
void  rotate( double, double , double ) Documentation changed from old to new.
Add a counter-clockwise rotation to this transformation, using the passed point as the center of rotation
void  setToRotation( double, double , double ) Documentation changed from old to new.
Set this affine transformation to represent a rotation over the passed angle, using the passed point as the center of rotation
void  setTransform( AffineTransform) Documentation changed from old to new.
Sets the values of this AffineTransform instance to the values provided.
void  setTransform( double, double , double , double , double , double ) Documentation changed from old to new.
Sets the values of this AffineTransform instance to the values provided.
void  setTransform( float, float , float , float , float , float ) Documentation changed from old to new.
Sets the values of this AffineTransform instance to the values provided.
Point  transform( Point, Point ) Documentation changed from old to new.
Transform the point according to the values of this AffineTransform object.
void  transform( Point[], int , Point[] , int , int ) Documentation changed from old to new.
Transform the array of points according to the values of this AffineTransform object.
void  transform( double[], int , double[] , int , int ) Documentation changed from old to new.
Transform the array of points according to the values of this AffineTransform object.
void  transform( double[], int , float[] , int , int ) Documentation changed from old to new.
Transform the array of points according to the values of this AffineTransform object.
void  transform( float[], int , double[] , int , int ) Documentation changed from old to new.
Transform the array of points according to the values of this AffineTransform object.
void  transform( float[], int , float[] , int , int ) Documentation changed from old to new.
Transform the array of points according to the values of this AffineTransform object.